diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index a59ff4f2e40e..4f960aaf3cdd 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -328,14 +328,16 @@ def tagAndPush(Map args = [:]) { } variants.each { variant -> + // cloud docker images are stored in the private docker namespace. + def sourceNamespace = variant.equals('-cloud') ? 'beats-ci' : 'beats' tags.each { tag -> // TODO: // For backward compatibility let's ensure we tag only for amd64, then E2E can benefit from until // they support the versioning with the architecture if ("${arch}" == "amd64") { - doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}") + doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}", sourceNamespace: sourceNamespace) } - doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}") + doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}", sourceNamespace: sourceNamespace) } } } @@ -343,6 +345,7 @@ def tagAndPush(Map args = [:]) { /** * @param beatName name of the Beat * @param variant name of the variant used to build the docker image name +* @param sourceNamespace namespace to be used as source for the docker tag command * @param sourceTag tag to be used as source for the docker tag command, usually under the 'beats' namespace * @param targetTag tag to be used as target for the docker tag command, usually under the 'observability-ci' namespace */ @@ -351,7 +354,8 @@ def doTagAndPush(Map args = [:]) { def variant = args.variant def sourceTag = args.sourceTag def targetTag = args.targetTag - def sourceName = "${DOCKER_REGISTRY}/beats/${beatName}${variant}:${sourceTag}" + def sourceNamespace = args.sourceNamespace + def sourceName = "${DOCKER_REGISTRY}/${sourceNamespace}/${beatName}${variant}:${sourceTag}" def targetName = "${DOCKER_REGISTRY}/observability-ci/${beatName}${variant}:${targetTag}" def iterations = 0 retryWithSleep(retries: 3, seconds: 5, backoff: true) { diff --git a/.go-version b/.go-version index de646d2fc11c..511a76e6faf8 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.16.6 +1.17.1 diff --git a/CHANGELOG-developer.next.asciidoc b/CHANGELOG-developer.next.asciidoc index 2160fd599bc5..d0f6255f21cd 100644 --- a/CHANGELOG-developer.next.asciidoc +++ b/CHANGELOG-developer.next.asciidoc @@ -63,6 +63,7 @@ The list below covers the major changes between 7.0.0-rc2 and master only. - Fix export dashboard command when running against Elastic Cloud hosted Kibana. {pull}22746[22746] - Remove `event.dataset` (ECS) annotion from `libbeat.logp`. {issue}27404[27404] - Errors should be thrown as errors. Metricsets inside Metricbeat will now throw errors as the `error` log level. {pull}27804[27804] +- Avoid panicking in `add_fields` processor when input event.Fields is a nil map. {pull}28219[28219] ==== Added @@ -121,3 +122,8 @@ The list below covers the major changes between 7.0.0-rc2 and master only. - Update to go-concert 0.2.0 {pull}27162[27162] - Update Go version to 1.16.5. {issue}26182[26182] {pull}26186[26186] - Introduce `libbeat/beat.Beat.OutputConfigReloader` {pull}28048[28048] +- Update Go version to 1.17.1. {pull}27543[27543] + +==== Deprecated + +- Deprecated the `common.Float` type. {issue}28279[28279] {pull}28280[28280] diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 2997981db48e..7273cfe40db1 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -23,6 +23,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Remove deprecated/undocumented IncludeCreatorMetadata setting from kubernetes metadata config options {pull}28006[28006] - Remove deprecated fields from kubernetes module {pull}28046[28046] - Remove deprecated config option aws_partition. {pull}28120[28120] +- Update kubernetes.namespace from keyword to group field and add name, labels, annotations, uuid as its fields {pull}27917[27917] *Auditbeat* @@ -92,6 +93,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Remove deprecated fields in Kafka module. {pull}27938[27938] - Remove deprecated fields in coredns module. {pull}28196[28196] - Remove old `httpjson` config implementation. {pull}28054[28054] +- Fix initialization of http client in Cloudfoundry input. {issue}28271[28271] {pull}28277[28277] *Heartbeat* @@ -138,6 +140,9 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Functionbeat* +- Support for Google Cloud Functions have been removed, as it has been in Beta for a long time and been broken +for a few releases. Please use other tools provided by Elastic to fetch data from GCP (e.g. Filebeat). + ==== Bugfixes @@ -209,6 +214,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Periodic metrics in logs will now report `libbeat.output.events.active` and `beat.memstats.rss` as gauges (rather than counters). {pull}22877[22877] - Beats dashboards use custom index when `setup.dashboards.index` is set. {issue}21232[21232] {pull}27901[27901] +- Fix handling of float data types within processors. {issue}28279[28279] {pull}28280[28280] +- Allow `clone3` syscall in seccomp filters. {pull}28117[28117] *Auditbeat* @@ -306,7 +313,10 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Update indentation for azure filebeat configuration. {pull}26604[26604] - Update Sophos xg module pipeline to deal with missing `date` and `time` fields. {pull}27834[27834] - sophos/xg fileset: Add missing pipeline for System Health logs. {pull}27827[27827] {issue}27826[27826] +- Resolve issue with @timestamp for defender_atp. {pull}28272[28272] - Tolerate faults when Windows Event Log session is interrupted {issue}27947[27947] {pull}28191[28191] +- Add support for username in cisco asa security negotiation logs {pull}26975[26975] +- Relax time parsing and capture group and session type in Cisco ASA module {issue}24710[24710] {pull}28325[28325] *Heartbeat* @@ -415,6 +425,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Packetbeat* +- Handle truncated DNS records more gracefully. {issue}21495[21495] {pull}28297[28297] *Winlogbeat* @@ -742,6 +753,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Make aws-cloudwatch input GA. {pull}28161[28161] - Move processing to ingest node for AWS vpcflow fileset. {pull}28168[28168] - Release zoom module as GA. {pull}28106[28106] +- Add support for secondary object attribute handling in ThreatIntel MISP module {pull}28124[28124] *Heartbeat* diff --git a/Jenkinsfile b/Jenkinsfile index 75d4c17ad499..e14b0e86dd60 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -460,13 +460,15 @@ def tagAndPush(Map args = [:]) { def variants = ["", "-oss", "-ubi8"] if(beatName == 'elastic-agent'){ - variants.add("-complete") - variants.add("-cloud") + variants.add("-complete") + variants.add("-cloud") } variants.each { variant -> + // cloud docker images are stored in the private docker namespace. + def sourceNamespace = variant.equals('-cloud') ? 'beats-ci' : 'beats' tags.each { tag -> - doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}") + doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}", sourceNamespace: sourceNamespace) } } } @@ -482,7 +484,8 @@ def doTagAndPush(Map args = [:]) { def variant = args.variant def sourceTag = args.sourceTag def targetTag = args.targetTag - def sourceName = "${DOCKER_REGISTRY}/beats/${beatName}${variant}:${sourceTag}" + def sourceNamespace = args.sourceNamespace + def sourceName = "${DOCKER_REGISTRY}/${sourceNamespace}/${beatName}${variant}:${sourceTag}" def targetName = "${DOCKER_REGISTRY}/observability-ci/${beatName}${variant}:${targetTag}" def iterations = 0 diff --git a/NOTICE.txt b/NOTICE.txt index ff814610ef04..5dfebf5dbecc 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -645,218 +645,6 @@ Contents of probable licence file $GOMODCACHE/cloud.google.com/go/pubsub@v1.3.1/ limitations under the License. --------------------------------------------------------------------------------- -Dependency : cloud.google.com/go/storage -Version: v1.10.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/cloud.google.com/go/storage@v1.10.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - -------------------------------------------------------------------------------- Dependency : code.cloudfoundry.org/go-loggregator Version: v7.4.0+incompatible @@ -2626,11 +2414,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/aws/aws-lambda-go -Version: v1.6.0 +Version: v1.13.3 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-lambda-go@v1.6.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-lambda-go@v1.13.3/LICENSE: Apache License @@ -17153,11 +16941,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : golang.org/x/net -Version: v0.0.0-20210614182718-04defd469f4e +Version: v0.0.0-20210805182204-aaa1db679c0d Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/golang.org/x/net@v0.0.0-20210614182718-04defd469f4e/LICENSE: +Contents of probable licence file $GOMODCACHE/golang.org/x/net@v0.0.0-20210805182204-aaa1db679c0d/LICENSE: Copyright (c) 2009 The Go Authors. All rights reserved. @@ -17264,11 +17052,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : golang.org/x/sys -Version: v0.0.0-20210630005230-0f9fa26af87c +Version: v0.0.0-20210809222454-d867a43fc93e Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/golang.org/x/sys@v0.0.0-20210630005230-0f9fa26af87c/LICENSE: +Contents of probable licence file $GOMODCACHE/golang.org/x/sys@v0.0.0-20210809222454-d867a43fc93e/LICENSE: Copyright (c) 2009 The Go Authors. All rights reserved. @@ -17375,11 +17163,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : golang.org/x/tools -Version: v0.0.0-20200602230032-c00d67ef29d0 +Version: v0.1.6 Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/golang.org/x/tools@v0.0.0-20200602230032-c00d67ef29d0/LICENSE: +Contents of probable licence file $GOMODCACHE/golang.org/x/tools@v0.1.6/LICENSE: Copyright (c) 2009 The Go Authors. All rights reserved. @@ -19349,115 +19137,12 @@ Indirect dependencies -------------------------------------------------------------------------------- -Dependency : bazil.org/fuse -Version: v0.0.0-20160811212531-371fbbdaa898 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/bazil.org/fuse@v0.0.0-20160811212531-371fbbdaa898/LICENSE: - -Copyright (c) 2013-2015 Tommi Virtanen. -Copyright (c) 2009, 2011, 2012 The Go Authors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - -The following included software components have additional copyright -notices and license terms that may differ from the above. - - -File fuse.go: - -// Adapted from Plan 9 from User Space's src/cmd/9pfuse/fuse.c, -// which carries this notice: -// -// The files in this directory are subject to the following license. -// -// The author of this software is Russ Cox. -// -// Copyright (c) 2006 Russ Cox -// -// Permission to use, copy, modify, and distribute this software for any -// purpose without fee is hereby granted, provided that this entire notice -// is included in all copies of any software which is or includes a copy -// or modification of this software and in all copies of the supporting -// documentation for such software. -// -// THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -// WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION OR WARRANTY -// OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS -// FITNESS FOR ANY PARTICULAR PURPOSE. - - -File fuse_kernel.go: - -// Derived from FUSE's fuse_kernel.h -/* - This file defines the kernel interface of FUSE - Copyright (C) 2001-2007 Miklos Szeredi - - - This -- and only this -- header file may also be distributed under - the terms of the BSD Licence as follows: - - Copyright (C) 2001-2007 Miklos Szeredi. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. -*/ - - --------------------------------------------------------------------------------- -Dependency : cloud.google.com/go/datastore -Version: v1.1.0 +Dependency : cloud.google.com/go/storage +Version: v1.10.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/cloud.google.com/go/datastore@v1.1.0/LICENSE: +Contents of probable licence file $GOMODCACHE/cloud.google.com/go/storage@v1.10.0/LICENSE: Apache License @@ -20120,43 +19805,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -Dependency : dmitri.shuralyov.com/gpu/mtl -Version: v0.0.0-20190408044501-666a987793e9 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/dmitri.shuralyov.com/gpu/mtl@v0.0.0-20190408044501-666a987793e9/LICENSE: - -Copyright (c) 2018 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -------------------------------------------------------------------------------- Dependency : github.com/Azure/azure-amqp-common-go/v3 Version: v3.0.0 @@ -21719,68 +21367,243 @@ THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/BurntSushi/xgb -Version: v0.0.0-20160522181843-27f122750802 -Licence type (autodetected): BSD-3-Clause +Dependency : github.com/Microsoft/hcsshim +Version: v0.8.7 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!burnt!sushi/xgb@v0.0.0-20160522181843-27f122750802/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/!microsoft/hcsshim@v0.8.7/LICENSE: -// Copyright (c) 2009 The XGB Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Subject to the terms and conditions of this License, Google hereby -// grants to You a perpetual, worldwide, non-exclusive, no-charge, -// royalty-free, irrevocable (except as stated in this section) patent -// license to make, have made, use, offer to sell, sell, import, and -// otherwise transfer this implementation of XGB, where such license -// applies only to those patent claims licensable by Google that are -// necessarily infringed by use of this implementation of XGB. If You -// institute patent litigation against any entity (including a -// cross-claim or counterclaim in a lawsuit) alleging that this -// implementation of XGB or a Contribution incorporated within this -// implementation of XGB constitutes direct or contributory patent -// infringement, then any patent licenses granted to You under this -// License for this implementation of XGB shall terminate as of the date -// such litigation is filed. +The MIT License (MIT) + +Copyright (c) 2015 Microsoft + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/Microsoft/hcsshim -Version: v0.8.7 +Dependency : github.com/OneOfOne/xxhash +Version: v1.2.2 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2.2/LICENSE: + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + +-------------------------------------------------------------------------------- +Dependency : github.com/Shopify/toxiproxy +Version: v2.1.4+incompatible Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!microsoft/hcsshim@v0.8.7/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/!shopify/toxiproxy@v2.1.4+incompatible/LICENSE: The MIT License (MIT) -Copyright (c) 2015 Microsoft +Copyright (c) 2014 Shopify Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -21800,36 +21623,47 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + -------------------------------------------------------------------------------- -Dependency : github.com/NYTimes/gziphandler -Version: v0.0.0-20170623195520-56545f4a5d46 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/akavel/rsrc +Version: v0.8.0 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!n!y!times/gziphandler@v0.0.0-20170623195520-56545f4a5d46/LICENSE.md: +Contents of probable licence file $GOMODCACHE/github.com/akavel/rsrc@v0.8.0/LICENSE.txt: -Copyright (c) 2015 The New York Times Company - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library 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. +The MIT License (MIT) + +Copyright (c) 2013-2017 The rsrc Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/OneOfOne/xxhash -Version: v1.2.2 +Dependency : github.com/apache/thrift +Version: v0.13.1-0.20200603211036-eac4d0c79a5f Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2.2/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0.20200603211036-eac4d0c79a5f/LICENSE: + Apache License Version 2.0, January 2004 @@ -22011,7 +21845,7 @@ Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2 APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" + boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -22019,77 +21853,136 @@ Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2 same "printed page" as the copyright notice for easier identification within third-party archives. + Copyright [yyyy] [name of copyright owner] --------------------------------------------------------------------------------- -Dependency : github.com/PuerkitoBio/purell -Version: v1.1.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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 -Contents of probable licence file $GOMODCACHE/github.com/!puerkito!bio/purell@v1.1.1/LICENSE: + http://www.apache.org/licenses/LICENSE-2.0 -Copyright (c) 2012, Martin Angers -All rights reserved. + 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. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +-------------------------------------------------- +SOFTWARE DISTRIBUTED WITH THRIFT: -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +The Apache Thrift software includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +-------------------------------------------------- +Portions of the following files are licensed under the MIT License: -* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + lib/erl/src/Makefile.am -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Please see doc/otp-base-license.txt for the full terms of this license. +-------------------------------------------------- +For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components: --------------------------------------------------------------------------------- -Dependency : github.com/PuerkitoBio/urlesc -Version: v0.0.0-20170810143723-de5bf2ad4578 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- +# Copyright (c) 2007 Thomas Porschberg +# +# Copying and distribution of this file, with or without +# modification, are permitted in any medium without royalty provided +# the copyright notice and this notice are preserved. -Contents of probable licence file $GOMODCACHE/github.com/!puerkito!bio/urlesc@v0.0.0-20170810143723-de5bf2ad4578/LICENSE: +-------------------------------------------------- +For the lib/nodejs/lib/thrift/json_parse.js: -Copyright (c) 2012 The Go Authors. All rights reserved. +/* + json_parse.js + 2015-05-02 + Public Domain. + NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +*/ +(By Douglas Crockford ) - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +-------------------------------------------------- +For lib/cpp/src/thrift/windows/SocketPair.cpp -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +/* socketpair.c + * Copyright 2007 by Nathan C. Myers ; some rights reserved. + * This code is Free Software. It may be copied freely, in original or + * modified form, subject only to the restrictions that (1) the author is + * relieved from all responsibilities for any use for any purpose, and (2) + * this copyright notice must be retained, unchanged, in its entirety. If + * for any reason the author might be held responsible for any consequences + * of copying or use, license is withheld. + */ + + +-------------------------------------------------- +For lib/py/compat/win32/stdint.h + +// ISO C9x compliant stdint.h for Microsoft Visual Studio +// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 +// +// Copyright (c) 2006-2008 Alexander Chemeris +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// 1. Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// 3. The name of the author may be used to endorse or promote products +// derived from this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +/////////////////////////////////////////////////////////////////////////////// + + +-------------------------------------------------- +Codegen template in t_html_generator.h + +* Bootstrap v2.0.3 +* +* Copyright 2012 Twitter, Inc +* Licensed under the Apache License v2.0 +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Designed and built with all the love in the world @twitter by @mdo and @fat. + +--------------------------------------------------- +For t_cl_generator.cc + + * Copyright (c) 2008- Patrick Collison + * Copyright (c) 2006- Facebook + +--------------------------------------------------- -------------------------------------------------------------------------------- -Dependency : github.com/Shopify/toxiproxy -Version: v2.1.4+incompatible +Dependency : github.com/apoydence/eachers +Version: v0.0.0-20181020210610-23942921fe77 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!shopify/toxiproxy@v2.1.4+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/apoydence/eachers@v0.0.0-20181020210610-23942921fe77/LICENSE.md: The MIT License (MIT) -Copyright (c) 2014 Shopify +Copyright (c) 2016 Andrew Poydence Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22110,134 +22003,168 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------------------------------------------------- -Dependency : github.com/akavel/rsrc -Version: v0.8.0 +Dependency : github.com/armon/go-radix +Version: v1.0.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/akavel/rsrc@v0.8.0/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/armon/go-radix@v1.0.0/LICENSE: -The MIT License (MIT) - -Copyright (c) 2013-2017 The rsrc Authors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +The MIT License (MIT) + +Copyright (c) 2014 Armon Dadgar + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/alecthomas/template -Version: v0.0.0-20190718012654-fb15b899a751 -Licence type (autodetected): BSD-3-Clause +Dependency : github.com/beorn7/perks +Version: v1.0.1 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/alecthomas/template@v0.0.0-20190718012654-fb15b899a751/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/beorn7/perks@v1.0.1/LICENSE: -Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (C) 2013 Blake Mizerany -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/alecthomas/units -Version: v0.0.0-20190717042225-c3de453c63f4 +Dependency : github.com/cavaliercoder/badio +Version: v0.0.0-20160213150051-ce5280129e9e Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/alecthomas/units@v0.0.0-20190717042225-c3de453c63f4/COPYING: +Contents of probable licence file $GOMODCACHE/github.com/cavaliercoder/badio@v0.0.0-20160213150051-ce5280129e9e/LICENSE: -Copyright (C) 2014 Alec Thomas +Copyright (c) 2015 Ryan Armstrong Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/cespare/xxhash +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/cespare/xxhash@v1.1.0/LICENSE.txt: + +Copyright (c) 2016 Caleb Spare + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/antihax/optional -Version: v0.0.0-20180407024304-ca021399b1a6 +Dependency : github.com/codegangsta/inject +Version: v0.0.0-20150114235600-33e0aa1cb7c0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/antihax/optional@v0.0.0-20180407024304-ca021399b1a6/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/codegangsta/inject@v0.0.0-20150114235600-33e0aa1cb7c0/LICENSE: The MIT License (MIT) -Copyright (c) 2016 Adam Hintz -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Copyright (c) 2013 Jeremy Saenz -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/apache/thrift -Version: v0.13.1-0.20200603211036-eac4d0c79a5f +Dependency : github.com/containerd/containerd +Version: v1.3.3 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0.20200603211036-eac4d0c79a5f/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.3.3/LICENSE: Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -22412,24 +22339,13 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0 END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] + Copyright The containerd Authors 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 + https://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, @@ -22437,554 +22353,536 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0 See the License for the specific language governing permissions and limitations under the License. --------------------------------------------------- -SOFTWARE DISTRIBUTED WITH THRIFT: -The Apache Thrift software includes a number of subcomponents with -separate copyright notices and license terms. Your use of the source -code for the these subcomponents is subject to the terms and -conditions of the following licenses. +-------------------------------------------------------------------------------- +Dependency : github.com/containerd/continuity +Version: v0.0.0-20200107194136-26c1120b8d41 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- --------------------------------------------------- -Portions of the following files are licensed under the MIT License: +Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v0.0.0-20200107194136-26c1120b8d41/LICENSE: - lib/erl/src/Makefile.am -Please see doc/otp-base-license.txt for the full terms of this license. + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ --------------------------------------------------- -For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components: + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -# Copyright (c) 2007 Thomas Porschberg -# -# Copying and distribution of this file, with or without -# modification, are permitted in any medium without royalty provided -# the copyright notice and this notice are preserved. + 1. Definitions. --------------------------------------------------- -For the lib/nodejs/lib/thrift/json_parse.js: + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -/* - json_parse.js - 2015-05-02 - Public Domain. - NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -*/ -(By Douglas Crockford ) + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. --------------------------------------------------- -For lib/cpp/src/thrift/windows/SocketPair.cpp + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -/* socketpair.c - * Copyright 2007 by Nathan C. Myers ; some rights reserved. - * This code is Free Software. It may be copied freely, in original or - * modified form, subject only to the restrictions that (1) the author is - * relieved from all responsibilities for any use for any purpose, and (2) - * this copyright notice must be retained, unchanged, in its entirety. If - * for any reason the author might be held responsible for any consequences - * of copying or use, license is withheld. - */ + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. --------------------------------------------------- -For lib/py/compat/win32/stdint.h + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -// ISO C9x compliant stdint.h for Microsoft Visual Studio -// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 -// -// Copyright (c) 2006-2008 Alexander Chemeris -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are met: -// -// 1. Redistributions of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// 3. The name of the author may be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -/////////////////////////////////////////////////////////////////////////////// + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." --------------------------------------------------- -Codegen template in t_html_generator.h + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. -* Bootstrap v2.0.3 -* -* Copyright 2012 Twitter, Inc -* Licensed under the Apache License v2.0 -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Designed and built with all the love in the world @twitter by @mdo and @fat. + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. ---------------------------------------------------- -For t_cl_generator.cc + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. - * Copyright (c) 2008- Patrick Collison - * Copyright (c) 2006- Facebook + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: ---------------------------------------------------- + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and --------------------------------------------------------------------------------- -Dependency : github.com/apoydence/eachers -Version: v0.0.0-20181020210610-23942921fe77 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/apoydence/eachers@v0.0.0-20181020210610-23942921fe77/LICENSE.md: - -The MIT License (MIT) + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -Copyright (c) 2016 Andrew Poydence + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. --------------------------------------------------------------------------------- -Dependency : github.com/armon/consul-api -Version: v0.0.0-20180202201655-eb2c6b5be1b6 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -Contents of probable licence file $GOMODCACHE/github.com/armon/consul-api@v0.0.0-20180202201655-eb2c6b5be1b6/LICENSE: + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. -Mozilla Public License, version 2.0 + END OF TERMS AND CONDITIONS -1. Definitions + Copyright The containerd Authors -1.1. "Contributor" + 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 - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. + https://www.apache.org/licenses/LICENSE-2.0 -1.2. "Contributor Version" + 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. - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. -1.3. "Contribution" +-------------------------------------------------------------------------------- +Dependency : github.com/coreos/go-systemd +Version: v0.0.0-20190321100706-95778dfbb74e +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- - means Covered Software of a particular Contributor. +Contents of probable licence file $GOMODCACHE/github.com/coreos/go-systemd@v0.0.0-20190321100706-95778dfbb74e/LICENSE: -1.4. "Covered Software" +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1.5. "Incompatible With Secondary Licenses" - means +1. Definitions. - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. -1.6. "Executable Form" +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. - means any form of the work other than Source Code Form. +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. -1.7. "Larger Work" +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. -1.8. "License" +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). - means this document. +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. -1.9. "Licensable" +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. -1.10. "Modifications" +2. Grant of Copyright License. - means any of the following: +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or +3. Grant of Patent License. - b. any new file in Source Code Form that contains any Covered Software. +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. -1.11. "Patent Claims" of a Contributor +4. Redistribution. - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: -1.12. "Secondary License" +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. +5. Submission of Contributions. -1.13. "Source Code Form" +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. - means the form of the work preferred for making modifications. +6. Trademarks. -1.14. "You" (or "Your") +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. +7. Disclaimer of Warranty. +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. -2. License Grants and Conditions +8. Limitation of Liability. -2.1. Grants +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: +9. Accepting Warranty or Additional Liability. - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. +END OF TERMS AND CONDITIONS -2.2. Effective Date +APPENDIX: How to apply the Apache License to your work - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. -2.3. Limitations on Grant Scope + Copyright [yyyy] [name of copyright owner] - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: + 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 - a. for any code that a Contributor has removed from Covered Software; or + http://www.apache.org/licenses/LICENSE-2.0 - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or + 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. - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). +-------------------------------------------------------------------------------- +Dependency : github.com/cucumber/godog +Version: v0.8.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -2.4. Subsequent Licenses +Contents of probable licence file $GOMODCACHE/github.com/cucumber/godog@v0.8.1/LICENSE: - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). +The MIT License (MIT) -2.5. Representation +Copyright (c) SmartBear - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -2.6. Fair Use +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -2.7. Conditions - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. +-------------------------------------------------------------------------------- +Dependency : github.com/cyphar/filepath-securejoin +Version: v0.2.2 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/cyphar/filepath-securejoin@v0.2.2/LICENSE: -3. Responsibilities +Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved. +Copyright (C) 2017 SUSE LLC. All rights reserved. -3.1. Distribution of Source Form +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -3.2. Distribution of Executable Form +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - If You distribute Covered Software in Executable Form then: - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and +-------------------------------------------------------------------------------- +Dependency : github.com/davecgh/go-spew +Version: v1.1.1 +Licence type (autodetected): ISC +-------------------------------------------------------------------------------- - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. +Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: -3.3. Distribution of a Larger Work +ISC License - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). +Copyright (c) 2012-2016 Dave Collins -3.4. Notices +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -3.5. Application of Additional Terms - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. +-------------------------------------------------------------------------------- +Dependency : github.com/davecgh/go-xdr +Version: v0.0.0-20161123171359-e6a2ba005892 +Licence type (autodetected): ISC +-------------------------------------------------------------------------------- -4. Inability to Comply Due to Statute or Regulation +Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-xdr@v0.0.0-20161123171359-e6a2ba005892/LICENSE: - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. +Copyright (c) 2012-2014 Dave Collins -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - --------------------------------------------------------------------------------- -Dependency : github.com/armon/go-radix -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/armon/go-radix@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Armon Dadgar - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/asaskevich/govalidator -Version: v0.0.0-20190424111038-f61b66f89f4a +Dependency : github.com/devigned/tab +Version: v0.1.2-0.20190607222403-0c15cf42f9a2 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/asaskevich/govalidator@v0.0.0-20190424111038-f61b66f89f4a/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/devigned/tab@v0.1.2-0.20190607222403-0c15cf42f9a2/LICENSE: -The MIT License (MIT) +MIT License -Copyright (c) 2014 Alex Saskevich +Copyright (c) 2019 David Justice Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23004,13 +22902,14 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + -------------------------------------------------------------------------------- -Dependency : github.com/awslabs/goformation/v3 -Version: v3.1.0 +Dependency : github.com/dgraph-io/ristretto +Version: v0.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/awslabs/goformation/v3@v3.1.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -23189,73 +23088,19 @@ Contents of probable licence file $GOMODCACHE/github.com/awslabs/goformation/v3@ END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/beorn7/perks -Version: v1.0.1 -Licence type (autodetected): MIT -------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/beorn7/perks@v1.0.1/LICENSE: - -Copyright (C) 2013 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/blang/semver -Version: v3.1.0+incompatible +Dependency : github.com/dgryski/go-farm +Version: v0.0.0-20190423205320-6a90982ecee2 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/blang/semver@v3.1.0+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/dgryski/go-farm@v0.0.0-20190423205320-6a90982ecee2/LICENSE: -The MIT License +As this is a highly derivative work, I have placed it under the same license as the original implementation: -Copyright (c) 2014 Benedikt Lang +Copyright (c) 2014-2017 Damian Gryski +Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23278,41 +23123,12 @@ THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/cavaliercoder/badio -Version: v0.0.0-20160213150051-ce5280129e9e -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cavaliercoder/badio@v0.0.0-20160213150051-ce5280129e9e/LICENSE: - -Copyright (c) 2015 Ryan Armstrong - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/census-instrumentation/opencensus-proto -Version: v0.2.1 +Dependency : github.com/dimchansky/utfbom +Version: v1.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/opencensus-proto@v0.2.1/LICENSE: - +Contents of probable licence file $GOMODCACHE/github.com/dimchansky/utfbom@v1.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -23494,7 +23310,7 @@ Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/ APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -23502,7 +23318,7 @@ Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -23518,119 +23334,16 @@ Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/ -------------------------------------------------------------------------------- -Dependency : github.com/cespare/xxhash -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cespare/xxhash@v1.1.0/LICENSE.txt: - -Copyright (c) 2016 Caleb Spare - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/chzyer/logex -Version: v1.1.10 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/chzyer/readline -Version: v0.0.0-20180603132655-2972be24d48e -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/chzyer/readline@v0.0.0-20180603132655-2972be24d48e/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Chzyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/chzyer/test -Version: v0.0.0-20180213035817-a1ea475d72b1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/chzyer/test@v0.0.0-20180213035817-a1ea475d72b1/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 chzyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/client9/misspell -Version: v0.3.4 +Dependency : github.com/dlclark/regexp2 +Version: v1.1.7-0.20171009020623-7632a260cbaf Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/client9/misspell@v0.3.4/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/dlclark/regexp2@v1.1.7-0.20171009020623-7632a260cbaf/LICENSE: The MIT License (MIT) -Copyright (c) 2015-2017 Nick Galbreath +Copyright (c) Doug Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23651,16 +23364,15 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------------------------------------------------- -Dependency : github.com/cncf/udpa/go -Version: v0.0.0-20201120205902-5459f2c99403 +Dependency : github.com/docker/distribution +Version: v2.7.1+incompatible Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-20201120205902-5459f2c99403/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/distribution@v2.7.1+incompatible/LICENSE: - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -23840,7 +23552,7 @@ Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-202 APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -23848,7 +23560,7 @@ Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-202 same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -23863,47 +23575,19 @@ Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-202 limitations under the License. --------------------------------------------------------------------------------- -Dependency : github.com/codegangsta/inject -Version: v0.0.0-20150114235600-33e0aa1cb7c0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/codegangsta/inject@v0.0.0-20150114235600-33e0aa1cb7c0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Jeremy Saenz - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------------------------------------------------- -Dependency : github.com/containerd/cgroups -Version: v0.0.0-20190919134610-bf292b21730f +Dependency : github.com/docker/go-metrics +Version: v0.0.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/cgroups@v0.0.0-20190919134610-bf292b21730f/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/go-metrics@v0.0.1/LICENSE: + Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -24078,24 +23762,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/cgroups@v0.0 END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] + Copyright 2013-2016 Docker, Inc. 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 + https://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, @@ -24105,12 +23778,277 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/cgroups@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/console -Version: v0.0.0-20180822173158-c12b1e7919c1 +Dependency : github.com/eapache/go-xerial-snappy +Version: v0.0.0-20180814174437-776d5712da21 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/eapache/go-xerial-snappy@v0.0.0-20180814174437-776d5712da21/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2016 Evan Huus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/eapache/queue +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/eapache/queue@v1.1.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014 Evan Huus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +-------------------------------------------------------------------------------- +Dependency : github.com/elazarl/goproxy +Version: v0.0.0-20180725130230-947c36da3153 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy@v0.0.0-20180725130230-947c36da3153/LICENSE: + +Copyright (c) 2012 Elazar Leibovich. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Elazar Leibovich. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/evanphx/json-patch +Version: v4.9.0+incompatible +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/evanphx/json-patch@v4.9.0+incompatible/LICENSE: + +Copyright (c) 2014, Evan Phoenix +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the Evan Phoenix nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/fortytw2/leaktest +Version: v1.3.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/fortytw2/leaktest@v1.3.0/LICENSE: + +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/frankban/quicktest +Version: v1.11.3 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/frankban/quicktest@v1.11.3/LICENSE: + +MIT License + +Copyright (c) 2017 Canonical Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-kit/kit +Version: v0.9.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-kit/kit@v0.9.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 Peter Bourgon + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-logfmt/logfmt +Version: v0.4.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-logfmt/logfmt@v0.4.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 go-logfmt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-logr/logr +Version: v0.4.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0.0-20180822173158-c12b1e7919c1/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-logr/logr@v0.4.0/LICENSE: Apache License Version 2.0, January 2004 @@ -24292,7 +24230,7 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0 APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -24300,7 +24238,7 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0 same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -24316,17 +24254,198 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/containerd -Version: v1.3.3 +Dependency : github.com/go-martini/martini +Version: v0.0.0-20170121215854-22fa46961aab +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-martini/martini@v0.0.0-20170121215854-22fa46961aab/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 Jeremy Saenz + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-ole/go-ole +Version: v1.2.5-0.20190920104607-14974a1cf647 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-ole/go-ole@v1.2.5-0.20190920104607-14974a1cf647/LICENSE: + +The MIT License (MIT) + +Copyright © 2013-2017 Yasuhiro Matsumoto, + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-sourcemap/sourcemap +Version: v2.1.2+incompatible +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-sourcemap/sourcemap@v2.1.2+incompatible/LICENSE: + +Copyright (c) 2016 The github.com/go-sourcemap/sourcemap Contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/gobuffalo/here +Version: v0.6.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gobuffalo/here@v0.6.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2019 Mark Bates + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/godbus/dbus/v5 +Version: v5.0.3 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/godbus/dbus/v5@v5.0.3/LICENSE: + +Copyright (c) 2013, Georg Reinke (), Google +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang-jwt/jwt/v4 +Version: v4.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/golang-jwt/jwt/v4@v4.0.0/LICENSE: + +Copyright (c) 2012 Dave Grijalva +Copyright (c) 2021 golang-jwt maintainers + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang-sql/civil +Version: v0.0.0-20190719163853-cb61b32ac6fe Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.3.3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/golang-sql/civil@v0.0.0-20190719163853-cb61b32ac6fe/LICENSE: Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -24501,13 +24620,24 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v END OF TERMS AND CONDITIONS - Copyright The containerd Authors + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] 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 - https://www.apache.org/licenses/LICENSE-2.0 + 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, @@ -24515,26 +24645,427 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v See the License for the specific language governing permissions and limitations under the License. - -------------------------------------------------------------------------------- -Dependency : github.com/containerd/continuity -Version: v0.0.0-20200107194136-26c1120b8d41 +Dependency : github.com/elastic/glog +Version: v1.0.1-0.20210831205241-7d8b5c89dfc4 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v0.0.0-20200107194136-26c1120b8d41/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elastic/glog@v1.0.1-0.20210831205241-7d8b5c89dfc4/LICENSE: +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions. - 1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang/groupcache +Version: v0.0.0-20200121045136-8c9f03a8e57e +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/golang/groupcache@v0.0.0-20200121045136-8c9f03a8e57e/LICENSE: + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/google/gofuzz +Version: v1.1.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/google/gofuzz@v1.1.0/LICENSE: + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. @@ -24702,13 +25233,24 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v END OF TERMS AND CONDITIONS - Copyright The containerd Authors + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] 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 - https://www.apache.org/licenses/LICENSE-2.0 + 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, @@ -24718,12 +25260,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v -------------------------------------------------------------------------------- -Dependency : github.com/containerd/go-runc -Version: v0.0.0-20180907222934-5a6d9f37cfa3 +Dependency : github.com/google/licenseclassifier +Version: v0.0.0-20200402202327-879cb1424de0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/go-runc@v0.0.0-20180907222934-5a6d9f37cfa3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/licenseclassifier@v0.0.0-20200402202327-879cb1424de0/LICENSE: + Apache License Version 2.0, January 2004 @@ -24929,12 +25472,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/go-runc@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/ttrpc -Version: v0.0.0-20190828154514-0e0f228740de +Dependency : github.com/google/martian +Version: v2.1.0+incompatible Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/ttrpc@v0.0.0-20190828154514-0e0f228740de/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/martian@v2.1.0+incompatible/LICENSE: + Apache License Version 2.0, January 2004 @@ -25140,12 +25684,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/ttrpc@v0.0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/typeurl -Version: v0.0.0-20180627222232-a93fcdb778cd +Dependency : github.com/google/martian/v3 +Version: v3.2.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/typeurl@v0.0.0-20180627222232-a93fcdb778cd/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/martian/v3@v3.2.1/LICENSE: + Apache License Version 2.0, January 2004 @@ -25351,12 +25896,12 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/typeurl@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/coreos/etcd -Version: v3.3.10+incompatible +Dependency : github.com/google/shlex +Version: v0.0.0-20191202100458-e7afc7fbc510 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/etcd@v3.3.10+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510/COPYING: Apache License @@ -25563,12 +26108,49 @@ Contents of probable licence file $GOMODCACHE/github.com/coreos/etcd@v3.3.10+inc -------------------------------------------------------------------------------- -Dependency : github.com/coreos/go-etcd -Version: v2.0.0+incompatible +Dependency : github.com/googleapis/gax-go/v2 +Version: v2.0.5 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/googleapis/gax-go/v2@v2.0.5/LICENSE: + +Copyright 2016, Google Inc. +All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/googleapis/gnostic +Version: v0.4.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/go-etcd@v2.0.0+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/googleapis/gnostic@v0.4.1/LICENSE: Apache License @@ -25774,13 +26356,117 @@ Contents of probable licence file $GOMODCACHE/github.com/coreos/go-etcd@v2.0.0+i limitations under the License. + -------------------------------------------------------------------------------- -Dependency : github.com/coreos/go-semver -Version: v0.2.0 +Dependency : github.com/gopherjs/gopherjs +Version: v0.0.0-20181017120253-0766667cb4d1 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gopherjs/gopherjs@v0.0.0-20181017120253-0766667cb4d1/LICENSE: + +Copyright (c) 2013 Richard Musiol. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/gorilla/websocket +Version: v1.4.2 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gorilla/websocket@v1.4.2/LICENSE: + +Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/grpc-ecosystem/grpc-gateway +Version: v1.13.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/grpc-ecosystem/grpc-gateway@v1.13.0/LICENSE.txt: + +Copyright (c) 2015, Gengo, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of Gengo, Inc. nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/hashicorp/cronexpr +Version: v1.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/go-semver@v0.2.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.0/APLv2: Apache License @@ -25987,876 +26673,753 @@ Contents of probable licence file $GOMODCACHE/github.com/coreos/go-semver@v0.2.0 -------------------------------------------------------------------------------- -Dependency : github.com/coreos/go-systemd -Version: v0.0.0-20190321100706-95778dfbb74e -Licence type (autodetected): Apache-2.0 +Dependency : github.com/hashicorp/errwrap +Version: v1.0.0 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/go-systemd@v0.0.0-20190321100706-95778dfbb74e/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.0.0/LICENSE: -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ +Mozilla Public License, version 2.0 -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions -1. Definitions. +1.1. “Contributor” -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. +1.2. “Contributor Version” -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. +1.3. “Contribution” -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. + means Covered Software of a particular Contributor. -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. +1.4. “Covered Software” -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. +1.5. “Incompatible With Secondary Licenses” + means -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. -2. Grant of Copyright License. +1.6. “Executable Form” -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. + means any form of the work other than Source Code Form. -3. Grant of Patent License. +1.7. “Larger Work” -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. -4. Redistribution. +1.8. “License” -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: + means this document. -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. +1.9. “Licensable” -5. Submission of Contributions. + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. +1.10. “Modifications” -6. Trademarks. + means any of the following: -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or -7. Disclaimer of Warranty. + b. any new file in Source Code Form that contains any Covered Software. -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. +1.11. “Patent Claims” of a Contributor -8. Limitation of Liability. + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. +1.12. “Secondary License” -9. Accepting Warranty or Additional Liability. + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. +1.13. “Source Code Form” -END OF TERMS AND CONDITIONS + means the form of the work preferred for making modifications. -APPENDIX: How to apply the Apache License to your work +1.14. “You” (or “Your”) -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. - Copyright [yyyy] [name of copyright owner] - 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 +2. License Grants and Conditions - http://www.apache.org/licenses/LICENSE-2.0 +2.1. Grants - 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. + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and --------------------------------------------------------------------------------- -Dependency : github.com/cpuguy83/go-md2man -Version: v1.0.10 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. -Contents of probable licence file $GOMODCACHE/github.com/cpuguy83/go-md2man@v1.0.10/LICENSE.md: +2.2. Effective Date -The MIT License (MIT) + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. -Copyright (c) 2014 Brian Goff +2.3. Limitations on Grant Scope -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + a. for any code that a Contributor has removed from Covered Software; or -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. --------------------------------------------------------------------------------- -Dependency : github.com/creack/pty -Version: v1.1.9 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). -Contents of probable licence file $GOMODCACHE/github.com/creack/pty@v1.1.9/LICENSE: +2.4. Subsequent Licenses -Copyright (c) 2011 Keith Rarick + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, -subject to the following conditions: +2.5. Representation -The above copyright notice and this permission notice shall -be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. +2.6. Fair Use --------------------------------------------------------------------------------- -Dependency : github.com/cucumber/godog -Version: v0.8.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. -Contents of probable licence file $GOMODCACHE/github.com/cucumber/godog@v0.8.1/LICENSE: +2.7. Conditions -The MIT License (MIT) + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. -Copyright (c) SmartBear -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +3. Responsibilities -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +3.1. Distribution of Source Form -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. +3.2. Distribution of Executable Form --------------------------------------------------------------------------------- -Dependency : github.com/cyphar/filepath-securejoin -Version: v0.2.2 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + If You distribute Covered Software in Executable Form then: -Contents of probable licence file $GOMODCACHE/github.com/cyphar/filepath-securejoin@v0.2.2/LICENSE: + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and -Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved. -Copyright (C) 2017 SUSE LLC. All rights reserved. + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +3.3. Distribution of a Larger Work - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +3.4. Notices + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. --------------------------------------------------------------------------------- -Dependency : github.com/davecgh/go-spew -Version: v1.1.1 -Licence type (autodetected): ISC --------------------------------------------------------------------------------- +3.5. Application of Additional Terms -Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. -ISC License +4. Inability to Comply Due to Statute or Regulation -Copyright (c) 2012-2016 Dave Collins + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +5. Termination -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. --------------------------------------------------------------------------------- -Dependency : github.com/davecgh/go-xdr -Version: v0.0.0-20161123171359-e6a2ba005892 -Licence type (autodetected): ISC --------------------------------------------------------------------------------- +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. -Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-xdr@v0.0.0-20161123171359-e6a2ba005892/LICENSE: +6. Disclaimer of Warranty -Copyright (c) 2012-2014 Dave Collins + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +7. Limitation of Liability -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. --------------------------------------------------------------------------------- -Dependency : github.com/devigned/tab -Version: v0.1.2-0.20190607222403-0c15cf42f9a2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +8. Litigation -Contents of probable licence file $GOMODCACHE/github.com/devigned/tab@v0.1.2-0.20190607222403-0c15cf42f9a2/LICENSE: + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. -MIT License +9. Miscellaneous -Copyright (c) 2019 David Justice + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +10. Versions of the License -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +10.1. New Versions + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. --------------------------------------------------------------------------------- -Dependency : github.com/dgraph-io/ristretto -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +10.2. Effect of New Versions -Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0.1.0/LICENSE: + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +10.3. Modified Versions - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). - 1. Definitions. +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +Exhibit A - Source Code Form License Notice - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +You may add additional accurate notices of copyright ownership. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Exhibit B - “Incompatible With Secondary Licenses” Notice - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +-------------------------------------------------------------------------------- +Dependency : github.com/hashicorp/go-cleanhttp +Version: v0.5.1 +Licence type (autodetected): MPL-2.0 +-------------------------------------------------------------------------------- - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-cleanhttp@v0.5.1/LICENSE: - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +Mozilla Public License, version 2.0 - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +1. Definitions - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +1.1. "Contributor" - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +1.2. "Contributor Version" - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +1.3. "Contribution" - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + means Covered Software of a particular Contributor. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +1.4. "Covered Software" - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +1.5. "Incompatible With Secondary Licenses" + means - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. + b. that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms of + a Secondary License. - END OF TERMS AND CONDITIONS +1.6. "Executable Form" + means any form of the work other than Source Code Form. --------------------------------------------------------------------------------- -Dependency : github.com/dgrijalva/jwt-go -Version: v3.2.0+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +1.7. "Larger Work" -Contents of probable licence file $GOMODCACHE/github.com/dgrijalva/jwt-go@v3.2.0+incompatible/LICENSE: + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. -Copyright (c) 2012 Dave Grijalva +1.8. "License" -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + means this document. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +1.9. "Licensable" -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + means having the right to grant, to the maximum extent possible, whether + at the time of the initial grant or subsequently, any and all of the + rights conveyed by this License. +1.10. "Modifications" + means any of the following: --------------------------------------------------------------------------------- -Dependency : github.com/dgryski/go-farm -Version: v0.0.0-20190423205320-6a90982ecee2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or -Contents of probable licence file $GOMODCACHE/github.com/dgryski/go-farm@v0.0.0-20190423205320-6a90982ecee2/LICENSE: + b. any new file in Source Code Form that contains any Covered Software. -As this is a highly derivative work, I have placed it under the same license as the original implementation: +1.11. "Patent Claims" of a Contributor -Copyright (c) 2014-2017 Damian Gryski -Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the License, + by the making, using, selling, offering for sale, having made, import, + or transfer of either its Contributions or its Contributor Version. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +1.12. "Secondary License" -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +1.13. "Source Code Form" + means the form of the work preferred for making modifications. +1.14. "You" (or "Your") --------------------------------------------------------------------------------- -Dependency : github.com/dimchansky/utfbom -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. -Contents of probable licence file $GOMODCACHE/github.com/dimchansky/utfbom@v1.1.0/LICENSE: - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +2. License Grants and Conditions - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +2.1. Grants - 1. Definitions. + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +2.2. Effective Date - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor first + distributes such Contribution. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +2.3. Limitations on Grant Scope - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + The licenses granted in this Section 2 are the only rights granted under + this License. No additional rights or licenses will be implied from the + distribution or licensing of Covered Software under this License. + Notwithstanding Section 2.1(b) above, no patent license is granted by a + Contributor: - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + a. for any code that a Contributor has removed from Covered Software; or - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. + b. for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. + This License does not grant any rights in the trademarks, service marks, + or logos of any Contributor (except as may be necessary to comply with + the notice requirements in Section 3.4). - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +2.4. Subsequent Licenses - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License (if + permitted under the terms of Section 3.3). - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +2.5. Representation - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights to + grant the rights to its Contributions conveyed by this License. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +2.6. Fair Use - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +2.7. Conditions - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +3. Responsibilities - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +3.1. Distribution of Source Form - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients' rights in the Source Code + Form. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +3.2. Distribution of Executable Form - END OF TERMS AND CONDITIONS + If You distribute Covered Software in Executable Form then: - APPENDIX: How to apply the Apache License to your work. + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter the + recipients' rights in the Source Code Form under this License. - Copyright {yyyy} {name of copyright owner} +3.3. Distribution of a Larger Work - 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 + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and the + Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). - http://www.apache.org/licenses/LICENSE-2.0 +3.4. Notices + + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, or + limitations of liability) contained within the Source Code Form of the + Covered Software, except that You may alter any license notices to the + extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered by + You alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, + judicial order, or regulation then You must: (a) comply with the terms of + this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be placed in a + text file included with all distributions of the Covered Software under + this License. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing + basis, if such Contributor fails to notify You of the non-compliance by + some reasonable means prior to 60 days after You have come back into + compliance. Moreover, Your grants from a particular Contributor are + reinstated on an ongoing basis if such Contributor notifies You of the + non-compliance by some reasonable means, this is the first time You have + received notice of non-compliance with this License from such + Contributor, and You become compliant prior to 30 days after Your receipt + of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under Section + 2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an "as is" basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is free + of defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the Covered Software + is with You. Should any Covered Software prove defective in any respect, + You (not any Contributor) assume the cost of any necessary servicing, + repair, or correction. This disclaimer of warranty constitutes an essential + part of this License. No use of any Covered Software is authorized under + this License except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from + such party's negligence to the extent applicable law prohibits such + limitation. Some jurisdictions do not allow the exclusion or limitation of + incidental or consequential damages, so this exclusion and limitation may + not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts + of a jurisdiction where the defendant maintains its principal place of + business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. Nothing + in this Section shall prevent a party's ability to bring cross-claims or + counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall not + be used to construe this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered Software, + or under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses If You choose to distribute Source Code Form that is + Incompatible With Secondary Licenses under the terms of this version of + the License, the notice described in Exhibit B of this License must be + attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, +then You may include the notice in a location (such as a LICENSE file in a +relevant directory) where a recipient would be likely to look for such a +notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice + + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 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. -------------------------------------------------------------------------------- -Dependency : github.com/dlclark/regexp2 -Version: v1.1.7-0.20171009020623-7632a260cbaf +Dependency : github.com/hashicorp/go-hclog +Version: v0.9.2 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/dlclark/regexp2@v1.1.7-0.20171009020623-7632a260cbaf/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-hclog@v0.9.2/LICENSE: -The MIT License (MIT) +MIT License -Copyright (c) Doug Clark +Copyright (c) 2017 HashiCorp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -26878,1584 +27441,1138 @@ SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/docker/distribution -Version: v2.7.1+incompatible -Licence type (autodetected): Apache-2.0 +Dependency : github.com/hashicorp/go-rootcerts +Version: v1.0.2 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/distribution@v2.7.1+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-rootcerts@v1.0.2/LICENSE: -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Mozilla Public License, version 2.0 - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions - 1. Definitions. +1.1. "Contributor" - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +1.2. "Contributor Version" - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +1.3. "Contribution" - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + means Covered Software of a particular Contributor. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +1.4. "Covered Software" - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +1.5. "Incompatible With Secondary Licenses" + means - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. + b. that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms of + a Secondary License. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +1.6. "Executable Form" - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + means any form of the work other than Source Code Form. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +1.7. "Larger Work" - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +1.8. "License" - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + means this document. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +1.9. "Licensable" - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + means having the right to grant, to the maximum extent possible, whether + at the time of the initial grant or subsequently, any and all of the + rights conveyed by this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +1.10. "Modifications" - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. + means any of the following: - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + b. any new file in Source Code Form that contains any Covered Software. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +1.11. "Patent Claims" of a Contributor - END OF TERMS AND CONDITIONS + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the License, + by the making, using, selling, offering for sale, having made, import, + or transfer of either its Contributions or its Contributor Version. - APPENDIX: How to apply the Apache License to your work. +1.12. "Secondary License" - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. - Copyright {yyyy} {name of copyright owner} +1.13. "Source Code Form" - 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 + means the form of the work preferred for making modifications. - http://www.apache.org/licenses/LICENSE-2.0 +1.14. "You" (or "Your") - 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. + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. +2. License Grants and Conditions --------------------------------------------------------------------------------- -Dependency : github.com/docker/go-metrics -Version: v0.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +2.1. Grants -Contents of probable licence file $GOMODCACHE/github.com/docker/go-metrics@v0.0.1/LICENSE: + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +2.2. Effective Date - 1. Definitions. + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor first + distributes such Contribution. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +2.3. Limitations on Grant Scope - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + The licenses granted in this Section 2 are the only rights granted under + this License. No additional rights or licenses will be implied from the + distribution or licensing of Covered Software under this License. + Notwithstanding Section 2.1(b) above, no patent license is granted by a + Contributor: - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + a. for any code that a Contributor has removed from Covered Software; or - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + b. for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + This License does not grant any rights in the trademarks, service marks, + or logos of any Contributor (except as may be necessary to comply with + the notice requirements in Section 3.4). - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +2.4. Subsequent Licenses - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License (if + permitted under the terms of Section 3.3). - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +2.5. Representation - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights to + grant the rights to its Contributions conveyed by this License. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +2.6. Fair Use - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +2.7. Conditions - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +3. Responsibilities - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +3.1. Distribution of Source Form - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients' rights in the Source Code + Form. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +3.2. Distribution of Executable Form - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. + If You distribute Covered Software in Executable Form then: - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter the + recipients' rights in the Source Code Form under this License. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +3.3. Distribution of a Larger Work - END OF TERMS AND CONDITIONS + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and the + Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). - Copyright 2013-2016 Docker, Inc. +3.4. Notices - 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 + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, or + limitations of liability) contained within the Source Code Form of the + Covered Software, except that You may alter any license notices to the + extent required to remedy known factual inaccuracies. - https://www.apache.org/licenses/LICENSE-2.0 +3.5. Application of Additional Terms - 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. + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered by + You alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. +4. Inability to Comply Due to Statute or Regulation --------------------------------------------------------------------------------- -Dependency : github.com/docopt/docopt-go -Version: v0.0.0-20180111231733-ee0de3bc6815 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, + judicial order, or regulation then You must: (a) comply with the terms of + this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be placed in a + text file included with all distributions of the Covered Software under + this License. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it. -Contents of probable licence file $GOMODCACHE/github.com/docopt/docopt-go@v0.0.0-20180111231733-ee0de3bc6815/LICENSE: +5. Termination -The MIT License (MIT) +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing + basis, if such Contributor fails to notify You of the non-compliance by + some reasonable means prior to 60 days after You have come back into + compliance. Moreover, Your grants from a particular Contributor are + reinstated on an ongoing basis if such Contributor notifies You of the + non-compliance by some reasonable means, this is the first time You have + received notice of non-compliance with this License from such + Contributor, and You become compliant prior to 30 days after Your receipt + of the notice. -Copyright (c) 2013 Keith Batten -Copyright (c) 2016 David Irvine +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under Section + 2.1 of this License shall terminate. -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +6. Disclaimer of Warranty -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Covered Software is provided under this License on an "as is" basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is free + of defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the Covered Software + is with You. Should any Covered Software prove defective in any respect, + You (not any Contributor) assume the cost of any necessary servicing, + repair, or correction. This disclaimer of warranty constitutes an essential + part of this License. No use of any Covered Software is authorized under + this License except under this disclaimer. +7. Limitation of Liability --------------------------------------------------------------------------------- -Dependency : github.com/eapache/go-xerial-snappy -Version: v0.0.0-20180814174437-776d5712da21 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from + such party's negligence to the extent applicable law prohibits such + limitation. Some jurisdictions do not allow the exclusion or limitation of + incidental or consequential damages, so this exclusion and limitation may + not apply to You. -Contents of probable licence file $GOMODCACHE/github.com/eapache/go-xerial-snappy@v0.0.0-20180814174437-776d5712da21/LICENSE: +8. Litigation -The MIT License (MIT) + Any litigation relating to this License may be brought only in the courts + of a jurisdiction where the defendant maintains its principal place of + business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. Nothing + in this Section shall prevent a party's ability to bring cross-claims or + counter-claims. -Copyright (c) 2016 Evan Huus +9. Miscellaneous -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall not + be used to construe this License against a Contributor. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +10. Versions of the License +10.1. New Versions --------------------------------------------------------------------------------- -Dependency : github.com/eapache/queue -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. -Contents of probable licence file $GOMODCACHE/github.com/eapache/queue@v1.1.0/LICENSE: +10.2. Effect of New Versions -The MIT License (MIT) + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered Software, + or under the terms of any subsequent version published by the license + steward. -Copyright (c) 2014 Evan Huus +10.3. Modified Versions -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses If You choose to distribute Source Code Form that is + Incompatible With Secondary Licenses under the terms of this version of + the License, the notice described in Exhibit B of this License must be + attached. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +Exhibit A - Source Code Form License Notice --------------------------------------------------------------------------------- -Dependency : github.com/elazarl/goproxy -Version: v0.0.0-20180725130230-947c36da3153 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. -Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy@v0.0.0-20180725130230-947c36da3153/LICENSE: +If it is not possible or desirable to put the notice in a particular file, +then You may include the notice in a location (such as a LICENSE file in a +relevant directory) where a recipient would be likely to look for such a +notice. -Copyright (c) 2012 Elazar Leibovich. All rights reserved. +You may add additional accurate notices of copyright ownership. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Exhibit B - "Incompatible With Secondary Licenses" Notice - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Elazar Leibovich. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 2.0. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -Dependency : github.com/emicklei/go-restful -Version: v0.0.0-20170410110728-ff4f55a20633 -Licence type (autodetected): MIT +Dependency : github.com/hashicorp/go-uuid +Version: v1.0.2 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/emicklei/go-restful@v0.0.0-20170410110728-ff4f55a20633/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-uuid@v1.0.2/LICENSE: -Copyright (c) 2012,2013 Ernest Micklei +Mozilla Public License, version 2.0 -MIT License +1. Definitions -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +1.1. "Contributor" -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +1.2. "Contributor Version" --------------------------------------------------------------------------------- -Dependency : github.com/envoyproxy/go-control-plane -Version: v0.9.9-0.20210217033140-668b12f5399d -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. -Contents of probable licence file $GOMODCACHE/github.com/envoyproxy/go-control-plane@v0.9.9-0.20210217033140-668b12f5399d/LICENSE: +1.3. "Contribution" - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + means Covered Software of a particular Contributor. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1.4. "Covered Software" - 1. Definitions. + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +1.5. "Incompatible With Secondary Licenses" + means - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + b. that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms of + a Secondary License. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +1.6. "Executable Form" - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + means any form of the work other than Source Code Form. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +1.7. "Larger Work" - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +1.8. "License" - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + means this document. - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +1.9. "Licensable" - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. + means having the right to grant, to the maximum extent possible, whether + at the time of the initial grant or subsequently, any and all of the + rights conveyed by this License. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +1.10. "Modifications" - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: + means any of the following: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + b. any new file in Source Code Form that contains any Covered Software. - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +1.11. "Patent Claims" of a Contributor - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the License, + by the making, using, selling, offering for sale, having made, import, + or transfer of either its Contributions or its Contributor Version. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +1.12. "Secondary License" - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +1.13. "Source Code Form" - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. + means the form of the work preferred for making modifications. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +1.14. "You" (or "Your") - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +2. License Grants and Conditions - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +2.1. Grants - Copyright {yyyy} {name of copyright owner} + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: - 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 + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and - http://www.apache.org/licenses/LICENSE-2.0 + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. - 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. +2.2. Effective Date + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor first + distributes such Contribution. --------------------------------------------------------------------------------- -Dependency : github.com/envoyproxy/protoc-gen-validate -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +2.3. Limitations on Grant Scope -Contents of probable licence file $GOMODCACHE/github.com/envoyproxy/protoc-gen-validate@v0.1.0/LICENSE: + The licenses granted in this Section 2 are the only rights granted under + this License. No additional rights or licenses will be implied from the + distribution or licensing of Covered Software under this License. + Notwithstanding Section 2.1(b) above, no patent license is granted by a + Contributor: + a. for any code that a Contributor has removed from Covered Software; or - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + b. for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. - 1. Definitions. + This License does not grant any rights in the trademarks, service marks, + or logos of any Contributor (except as may be necessary to comply with + the notice requirements in Section 3.4). - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +2.4. Subsequent Licenses - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License (if + permitted under the terms of Section 3.3). - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +2.5. Representation - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights to + grant the rights to its Contributions conveyed by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +2.6. Fair Use - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +2.7. Conditions - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +3. Responsibilities - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +3.1. Distribution of Source Form - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients' rights in the Source Code + Form. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +3.2. Distribution of Executable Form - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + If You distribute Covered Software in Executable Form then: - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter the + recipients' rights in the Source Code Form under this License. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +3.3. Distribution of a Larger Work - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and the + Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +3.4. Notices - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, or + limitations of liability) contained within the Source Code Form of the + Covered Software, except that You may alter any license notices to the + extent required to remedy known factual inaccuracies. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +3.5. Application of Additional Terms - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered by + You alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +4. Inability to Comply Due to Statute or Regulation - END OF TERMS AND CONDITIONS + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, + judicial order, or regulation then You must: (a) comply with the terms of + this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be placed in a + text file included with all distributions of the Covered Software under + this License. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it. - APPENDIX: How to apply the Apache License to your work. +5. Termination - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing + basis, if such Contributor fails to notify You of the non-compliance by + some reasonable means prior to 60 days after You have come back into + compliance. Moreover, Your grants from a particular Contributor are + reinstated on an ongoing basis if such Contributor notifies You of the + non-compliance by some reasonable means, this is the first time You have + received notice of non-compliance with this License from such + Contributor, and You become compliant prior to 30 days after Your receipt + of the notice. - Copyright [yyyy] [name of copyright owner] +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under Section + 2.1 of this License shall terminate. - 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 +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. - http://www.apache.org/licenses/LICENSE-2.0 +6. Disclaimer of Warranty - 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. + Covered Software is provided under this License on an "as is" basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is free + of defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the Covered Software + is with You. Should any Covered Software prove defective in any respect, + You (not any Contributor) assume the cost of any necessary servicing, + repair, or correction. This disclaimer of warranty constitutes an essential + part of this License. No use of any Covered Software is authorized under + this License except under this disclaimer. +7. Limitation of Liability --------------------------------------------------------------------------------- -Dependency : github.com/evanphx/json-patch -Version: v4.9.0+incompatible -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from + such party's negligence to the extent applicable law prohibits such + limitation. Some jurisdictions do not allow the exclusion or limitation of + incidental or consequential damages, so this exclusion and limitation may + not apply to You. -Contents of probable licence file $GOMODCACHE/github.com/evanphx/json-patch@v4.9.0+incompatible/LICENSE: +8. Litigation -Copyright (c) 2014, Evan Phoenix -All rights reserved. + Any litigation relating to this License may be brought only in the courts + of a jurisdiction where the defendant maintains its principal place of + business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. Nothing + in this Section shall prevent a party's ability to bring cross-claims or + counter-claims. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +9. Miscellaneous -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of the Evan Phoenix nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall not + be used to construe this License against a Contributor. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +10. Versions of the License --------------------------------------------------------------------------------- -Dependency : github.com/form3tech-oss/jwt-go -Version: v3.2.2+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +10.1. New Versions -Contents of probable licence file $GOMODCACHE/github.com/form3tech-oss/jwt-go@v3.2.2+incompatible/LICENSE: + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. -Copyright (c) 2012 Dave Grijalva +10.2. Effect of New Versions -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered Software, + or under the terms of any subsequent version published by the license + steward. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +10.3. Modified Versions -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). +10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses If You choose to distribute Source Code Form that is + Incompatible With Secondary Licenses under the terms of this version of + the License, the notice described in Exhibit B of this License must be + attached. +Exhibit A - Source Code Form License Notice --------------------------------------------------------------------------------- -Dependency : github.com/fortytw2/leaktest -Version: v1.3.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. -Contents of probable licence file $GOMODCACHE/github.com/fortytw2/leaktest@v1.3.0/LICENSE: +If it is not possible or desirable to put the notice in a particular file, +then You may include the notice in a location (such as a LICENSE file in a +relevant directory) where a recipient would be likely to look for such a +notice. -Copyright (c) 2012 The Go Authors. All rights reserved. +You may add additional accurate notices of copyright ownership. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Exhibit B - "Incompatible With Secondary Licenses" Notice - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 2.0. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -Dependency : github.com/frankban/quicktest -Version: v1.11.3 -Licence type (autodetected): MIT +Dependency : github.com/hashicorp/go-version +Version: v1.0.0 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/frankban/quicktest@v1.11.3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-version@v1.0.0/LICENSE: -MIT License +Mozilla Public License, version 2.0 -Copyright (c) 2017 Canonical Ltd. +1. Definitions -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +1.1. “Contributor” -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +1.2. “Contributor Version” + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. --------------------------------------------------------------------------------- -Dependency : github.com/ghodss/yaml -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +1.3. “Contribution” -Contents of probable licence file $GOMODCACHE/github.com/ghodss/yaml@v1.0.0/LICENSE: + means Covered Software of a particular Contributor. -The MIT License (MIT) +1.4. “Covered Software” -Copyright (c) 2014 Sam Ghods + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +1.5. “Incompatible With Secondary Licenses” + means -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. +1.6. “Executable Form” -Copyright (c) 2012 The Go Authors. All rights reserved. + means any form of the work other than Source Code Form. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +1.7. “Larger Work” - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1.8. “License” + means this document. --------------------------------------------------------------------------------- -Dependency : github.com/go-gl/glfw -Version: v0.0.0-20190409004039-e6da0acd62b1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- +1.9. “Licensable” -Contents of probable licence file $GOMODCACHE/github.com/go-gl/glfw@v0.0.0-20190409004039-e6da0acd62b1/LICENSE: + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. -Copyright (c) 2012 The glfw3-go Authors. All rights reserved. +1.10. “Modifications” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + means any of the following: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + b. any new file in Source Code Form that contains any Covered Software. +1.11. “Patent Claims” of a Contributor --------------------------------------------------------------------------------- -Dependency : github.com/go-gl/glfw/v3.3/glfw -Version: v0.0.0-20200222043503-6f7a984d4dc4 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. -Contents of probable licence file $GOMODCACHE/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20200222043503-6f7a984d4dc4/LICENSE: +1.12. “Secondary License” -Copyright (c) 2012 The glfw3-go Authors. All rights reserved. + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +1.13. “Source Code Form” - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + means the form of the work preferred for making modifications. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1.14. “You” (or “Your”) + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. --------------------------------------------------------------------------------- -Dependency : github.com/go-kit/kit -Version: v0.9.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-kit/kit@v0.9.0/LICENSE: +2. License Grants and Conditions -The MIT License (MIT) +2.1. Grants -Copyright (c) 2015 Peter Bourgon + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +2.2. Effective Date + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. +2.3. Limitations on Grant Scope --------------------------------------------------------------------------------- -Dependency : github.com/go-logfmt/logfmt -Version: v0.4.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: -Contents of probable licence file $GOMODCACHE/github.com/go-logfmt/logfmt@v0.4.0/LICENSE: + a. for any code that a Contributor has removed from Covered Software; or -The MIT License (MIT) + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or -Copyright (c) 2015 go-logfmt + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +2.4. Subsequent Licenses -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). +2.5. Representation + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. --------------------------------------------------------------------------------- -Dependency : github.com/go-logr/logr -Version: v0.4.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +2.6. Fair Use -Contents of probable licence file $GOMODCACHE/github.com/go-logr/logr@v0.4.0/LICENSE: + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +2.7. Conditions - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +3. Responsibilities - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +3.1. Distribution of Source Form - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +3.2. Distribution of Executable Form - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + If You distribute Covered Software in Executable Form then: - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +3.3. Distribution of a Larger Work - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +3.4. Notices - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +3.5. Application of Additional Terms - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +4. Inability to Comply Due to Statute or Regulation - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +5. Termination - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +6. Disclaimer of Warranty - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +7. Limitation of Liability - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. - END OF TERMS AND CONDITIONS +8. Litigation - APPENDIX: How to apply the Apache License to your work. + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +9. Miscellaneous - Copyright {yyyy} {name of copyright owner} + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. - 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 +10. Versions of the License - 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. +10.1. New Versions + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. --------------------------------------------------------------------------------- -Dependency : github.com/go-martini/martini -Version: v0.0.0-20170121215854-22fa46961aab -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +10.2. Effect of New Versions -Contents of probable licence file $GOMODCACHE/github.com/go-martini/martini@v0.0.0-20170121215854-22fa46961aab/LICENSE: + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. -The MIT License (MIT) +10.3. Modified Versions -Copyright (c) 2015 Jeremy Saenz + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/go-ole/go-ole -Version: v1.2.5-0.20190920104607-14974a1cf647 +Dependency : github.com/hpcloud/tail +Version: v1.0.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-ole/go-ole@v1.2.5-0.20190920104607-14974a1cf647/LICENSE: - -The MIT License (MIT) +Contents of probable licence file $GOMODCACHE/github.com/hpcloud/tail@v1.0.0/LICENSE.txt: -Copyright © 2013-2017 Yasuhiro Matsumoto, +# The MIT License (MIT) -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +# © Copyright 2015 Hewlett Packard Enterprise Development LP +Copyright (c) 2014 ActiveState +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -28465,124775 +28582,73 @@ SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/jsonpointer -Version: v0.19.3 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/imdario/mergo +Version: v0.3.6 +Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonpointer@v0.19.3/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +Contents of probable licence file $GOMODCACHE/github.com/imdario/mergo@v0.3.6/LICENSE: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +Copyright (c) 2013 Dario Castañé. All rights reserved. +Copyright (c) 2012 The Go Authors. All rights reserved. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +-------------------------------------------------------------------------------- +Dependency : github.com/inconshreveable/mousetrap +Version: v1.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Contents of probable licence file $GOMODCACHE/github.com/inconshreveable/mousetrap@v1.0.0/LICENSE: - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +Copyright 2014 Alan Shreve - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +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 - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: + http://www.apache.org/licenses/LICENSE-2.0 - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +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. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/jsonreference -Version: v0.19.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonreference@v0.19.3/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/spec -Version: v0.19.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/spec@v0.19.3/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/swag -Version: v0.19.5 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/swag@v0.19.5/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-sourcemap/sourcemap -Version: v2.1.2+incompatible -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-sourcemap/sourcemap@v2.1.2+incompatible/LICENSE: - -Copyright (c) 2016 The github.com/go-sourcemap/sourcemap Contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-stack/stack -Version: v1.8.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-stack/stack@v1.8.0/LICENSE.md: - -The MIT License (MIT) - -Copyright (c) 2014 Chris Hines - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gobuffalo/here -Version: v0.6.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gobuffalo/here@v0.6.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2019 Mark Bates - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/godbus/dbus/v5 -Version: v5.0.3 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/godbus/dbus/v5@v5.0.3/LICENSE: - -Copyright (c) 2013, Georg Reinke (), Google -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/golang-jwt/jwt/v4 -Version: v4.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang-jwt/jwt/v4@v4.0.0/LICENSE: - -Copyright (c) 2012 Dave Grijalva -Copyright (c) 2021 golang-jwt maintainers - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/golang-sql/civil -Version: v0.0.0-20190719163853-cb61b32ac6fe -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang-sql/civil@v0.0.0-20190719163853-cb61b32ac6fe/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - --------------------------------------------------------------------------------- -Dependency : github.com/elastic/glog -Version: v1.0.1-0.20210831205241-7d8b5c89dfc4 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/elastic/glog@v1.0.1-0.20210831205241-7d8b5c89dfc4/LICENSE: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/golang/groupcache -Version: v0.0.0-20200121045136-8c9f03a8e57e -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang/groupcache@v0.0.0-20200121045136-8c9f03a8e57e/LICENSE: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/btree -Version: v1.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/btree@v1.0.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/gofuzz -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/gofuzz@v1.1.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/licenseclassifier -Version: v0.0.0-20200402202327-879cb1424de0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/licenseclassifier@v0.0.0-20200402202327-879cb1424de0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/martian -Version: v2.1.0+incompatible -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/martian@v2.1.0+incompatible/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/martian/v3 -Version: v3.2.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/martian/v3@v3.2.1/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/pprof -Version: v0.0.0-20210601050228-01bbb1931b22 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/pprof@v0.0.0-20210601050228-01bbb1931b22/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/renameio -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/renameio@v0.1.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/shlex -Version: v0.0.0-20191202100458-e7afc7fbc510 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510/COPYING: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/googleapis/gax-go/v2 -Version: v2.0.5 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/googleapis/gax-go/v2@v2.0.5/LICENSE: - -Copyright 2016, Google Inc. -All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/googleapis/gnostic -Version: v0.4.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/googleapis/gnostic@v0.4.1/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/gopherjs/gopherjs -Version: v0.0.0-20181017120253-0766667cb4d1 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gopherjs/gopherjs@v0.0.0-20181017120253-0766667cb4d1/LICENSE: - -Copyright (c) 2013 Richard Musiol. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/securecookie -Version: v1.1.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/securecookie@v1.1.1/LICENSE: - -Copyright (c) 2012 Rodrigo Moraes. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/sessions -Version: v1.2.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/sessions@v1.2.1/LICENSE: - -Copyright (c) 2012-2018 The Gorilla Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/websocket -Version: v1.4.2 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/websocket@v1.4.2/LICENSE: - -Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gregjones/httpcache -Version: v0.0.0-20180305231024-9cad4c3443a7 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gregjones/httpcache@v0.0.0-20180305231024-9cad4c3443a7/LICENSE.txt: - -Copyright © 2012 Greg Jones (greg.jones@gmail.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/grpc-ecosystem/grpc-gateway -Version: v1.13.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/grpc-ecosystem/grpc-gateway@v1.13.0/LICENSE.txt: - -Copyright (c) 2015, Gengo, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of Gengo, Inc. nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/cronexpr -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.0/APLv2: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/errwrap -Version: v1.0.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.0.0/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-cleanhttp -Version: v0.5.1 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-cleanhttp@v0.5.1/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-hclog -Version: v0.9.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-hclog@v0.9.2/LICENSE: - -MIT License - -Copyright (c) 2017 HashiCorp - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-rootcerts -Version: v1.0.2 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-rootcerts@v1.0.2/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-uuid -Version: v1.0.2 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-uuid@v1.0.2/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-version -Version: v1.0.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-version@v1.0.0/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/hcl -Version: v1.0.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/hcl@v1.0.0/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hpcloud/tail -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hpcloud/tail@v1.0.0/LICENSE.txt: - -# The MIT License (MIT) - -# © Copyright 2015 Hewlett Packard Enterprise Development LP -Copyright (c) 2014 ActiveState - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/ianlancetaylor/demangle -Version: v0.0.0-20200824232613-28f6c0f3b639 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/ianlancetaylor/demangle@v0.0.0-20200824232613-28f6c0f3b639/LICENSE: - -Copyright (c) 2015 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/imdario/mergo -Version: v0.3.6 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/imdario/mergo@v0.3.6/LICENSE: - -Copyright (c) 2013 Dario Castañé. All rights reserved. -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/inconshreveable/mousetrap -Version: v1.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/inconshreveable/mousetrap@v1.0.0/LICENSE: - -Copyright 2014 Alan Shreve - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/aescts/v2 -Version: v2.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/aescts/v2@v2.0.0/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/dnsutils/v2 -Version: v2.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/dnsutils/v2@v2.0.0/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/gofork -Version: v1.0.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gofork@v1.0.0/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/goidentity/v6 -Version: v6.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/goidentity/v6@v6.0.1/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/gokrb5/v8 -Version: v8.4.2 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gokrb5/v8@v8.4.2/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/rpc/v2 -Version: v2.0.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/rpc/v2@v2.0.3/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jessevdk/go-flags -Version: v1.4.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jessevdk/go-flags@v1.4.0/LICENSE: - -Copyright (c) 2012 Jesse van den Kieboom. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jmespath/go-jmespath -Version: v0.0.0-20180206201540-c2b33e8439af -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jmespath/go-jmespath@v0.0.0-20180206201540-c2b33e8439af/LICENSE: - -Copyright 2015 James Saryerwinnie - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/joho/godotenv -Version: v1.3.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/joho/godotenv@v1.3.0/LICENCE: - -Copyright (c) 2013 John Barton - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/jpillora/backoff -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jpillora/backoff@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2017 Jaime Pillora - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/json-iterator/go -Version: v1.1.10 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/json-iterator/go@v1.1.10/LICENSE: - -MIT License - -Copyright (c) 2016 json-iterator - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jstemmer/go-junit-report -Version: v0.9.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jstemmer/go-junit-report@v0.9.1/LICENSE: - -Copyright (c) 2012 Joel Stemmer - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jtolds/gls -Version: v4.20.0+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jtolds/gls@v4.20.0+incompatible/LICENSE: - -Copyright (c) 2013, Space Monkey, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/julienschmidt/httprouter -Version: v1.2.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/julienschmidt/httprouter@v1.2.0/LICENSE: - -Copyright (c) 2013 Julien Schmidt. All rights reserved. - - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The names of the contributors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL JULIEN SCHMIDT BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -Dependency : github.com/karrick/godirwalk -Version: v1.15.6 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/karrick/godirwalk@v1.15.6/LICENSE: - -BSD 2-Clause License - -Copyright (c) 2017, Karrick McDermott -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kisielk/errcheck -Version: v1.5.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kisielk/errcheck@v1.5.0/LICENSE: - -Copyright (c) 2013 Kamil Kisiel - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kisielk/gotool -Version: v1.0.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kisielk/gotool@v1.0.0/LEGAL: - -All the files in this distribution are covered under either the MIT -license (see the file LICENSE) except some files mentioned below. - -match.go, match_test.go: - - Copyright (c) 2009 The Go Authors. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/klauspost/compress -Version: v1.12.3 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/klauspost/compress@v1.12.3/LICENSE: - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2019 Klaus Post. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/konsorten/go-windows-terminal-sequences -Version: v1.0.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/konsorten/go-windows-terminal-sequences@v1.0.2/LICENSE: - -(The MIT License) - -Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/logfmt -Version: v0.0.0-20140226030751-b84e30acd515 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/logfmt@v0.0.0-20140226030751-b84e30acd515/Readme: - -Go package for parsing (and, eventually, generating) -log lines in the logfmt style. - -See http://godoc.org/github.com/kr/logfmt for format, and other documentation and examples. - -Copyright (C) 2013 Keith Rarick, Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/pretty -Version: v0.2.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/pretty@v0.2.1/License: - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/pty -Version: v1.1.5 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/pty@v1.1.5/License: - -Copyright (c) 2011 Keith Rarick - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall -be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/text -Version: v0.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/text@v0.2.0/License: - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/magiconair/properties -Version: v1.8.0 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/magiconair/properties@v1.8.0/LICENSE: - -goproperties - properties file decoder for Go - -Copyright (c) 2013-2018 - Frank Schroeder - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mailru/easyjson -Version: v0.7.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mailru/easyjson@v0.7.1/LICENSE: - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/markbates/pkger -Version: v0.17.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/markbates/pkger@v0.17.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2019 Mark Bates - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/martini-contrib/render -Version: v0.0.0-20150707142108-ec18f8345a11 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/martini-contrib/render@v0.0.0-20150707142108-ec18f8345a11/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Jeremy Saenz - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-ieproxy -Version: v0.0.0-20191113090002-7c0f6868bffe -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-ieproxy@v0.0.0-20191113090002-7c0f6868bffe/LICENSE: - -MIT License - -Copyright (c) 2014 mattn -Copyright (c) 2017 oliverpool -Copyright (c) 2019 Adele Reed - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-isatty -Version: v0.0.12 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-isatty@v0.0.12/LICENSE: - -Copyright (c) Yasuhiro MATSUMOTO - -MIT License (Expat) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-runewidth -Version: v0.0.9 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-runewidth@v0.0.9/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-sqlite3 -Version: v1.9.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-sqlite3@v1.9.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/matttproud/golang_protobuf_extensions -Version: v1.0.2-0.20181231171920-c182affec369 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/matttproud/golang_protobuf_extensions@v1.0.2-0.20181231171920-c182affec369/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/go-homedir -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-homedir@v1.1.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/go-testing-interface -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-testing-interface@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/iochan -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/iochan@v1.0.0/LICENSE.md: - -The MIT License (MIT) - -Copyright (c) 2015 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/moby/spdystream -Version: v0.2.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/moby/spdystream@v0.2.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/modern-go/concurrent -Version: v0.0.0-20180306012644-bacd9c7ef1dd -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/modern-go/concurrent@v0.0.0-20180306012644-bacd9c7ef1dd/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/modern-go/reflect2 -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/modern-go/reflect2@v1.0.1/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/morikuni/aec -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/morikuni/aec@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 Taihei Morikuni - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/munnerz/goautoneg -Version: v0.0.0-20120707110453-a547fc61f48d -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/mwitkow/go-conntrack -Version: v0.0.0-20161129095857-cc309e4a2223 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mwitkow/go-conntrack@v0.0.0-20161129095857-cc309e4a2223/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/mxk/go-flowrate -Version: v0.0.0-20140419014527-cca7078d478f -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mxk/go-flowrate@v0.0.0-20140419014527-cca7078d478f/LICENSE: - -Copyright (c) 2014 The Go-FlowRate Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the - distribution. - - * Neither the name of the go-flowrate project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/niemeyer/pretty -Version: v0.0.0-20200227124842-a10e7caefd8e -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/niemeyer/pretty@v0.0.0-20200227124842-a10e7caefd8e/License: - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/onsi/ginkgo -Version: v1.11.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/onsi/ginkgo@v1.11.0/LICENSE: - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/onsi/gomega -Version: v1.7.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/onsi/gomega@v1.7.0/LICENSE: - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/go-digest -Version: v1.0.0-rc1.0.20190228220655-ac19fd6e7483 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/go-digest@v1.0.0-rc1.0.20190228220655-ac19fd6e7483/LICENSE: - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2016 Docker, Inc. - - 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 - - https://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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/image-spec -Version: v1.0.2-0.20190823105129-775207bd45b6 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/image-spec@v1.0.2-0.20190823105129-775207bd45b6/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2016 The Linux Foundation. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/runc -Version: v1.0.0-rc9 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runc@v1.0.0-rc9/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/runtime-spec -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runtime-spec@v1.0.1/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 The Linux Foundation. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/runtime-tools -Version: v0.0.0-20181011054405-1d69bd0f9c39 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runtime-tools@v0.0.0-20181011054405-1d69bd0f9c39/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 The Linux Foundation. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/otiai10/curr -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/otiai10/curr@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2020 Hiromu Ochiai - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/otiai10/mint -Version: v1.3.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/otiai10/mint@v1.3.1/LICENSE: - -Copyright 2017 otiai10 (Hiromu OCHIAI) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/oxtoacart/bpool -Version: v0.0.0-20150712133111-4e1c5567d7c2 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/oxtoacart/bpool@v0.0.0-20150712133111-4e1c5567d7c2/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014 Percy Wegmann - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/pelletier/go-toml -Version: v1.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/pelletier/go-toml@v1.2.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/peterbourgon/diskv -Version: v2.0.1+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/peterbourgon/diskv@v2.0.1+incompatible/LICENSE: - -Copyright (c) 2011-2012 Peter Bourgon - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/pierrec/lz4 -Version: v2.6.0+incompatible -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/pierrec/lz4@v2.6.0+incompatible/LICENSE: - -Copyright (c) 2015, Pierre Curto -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of xxHash nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/prometheus/client_golang -Version: v1.1.1-0.20190913103102-20428fa0bffc -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/prometheus/client_golang@v1.1.1-0.20190913103102-20428fa0bffc/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/rogpeppe/fastuuid -Version: v1.2.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/rogpeppe/fastuuid@v1.2.0/LICENSE: - -Copyright © 2014, Roger Peppe -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - * Neither the name of this project nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/rogpeppe/go-internal -Version: v1.3.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/rogpeppe/go-internal@v1.3.0/LICENSE: - -Copyright (c) 2018 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/russross/blackfriday -Version: v1.5.2 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/russross/blackfriday@v1.5.2/LICENSE.txt: - -Blackfriday is distributed under the Simplified BSD License: - -> Copyright © 2011 Russ Ross -> All rights reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions -> are met: -> -> 1. Redistributions of source code must retain the above copyright -> notice, this list of conditions and the following disclaimer. -> -> 2. Redistributions in binary form must reproduce the above -> copyright notice, this list of conditions and the following -> disclaimer in the documentation and/or other materials provided with -> the distribution. -> -> THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -> "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -> LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -> FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -> COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -> INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -> BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -> LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -> CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -> LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -> ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -> POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/samuel/go-parser -Version: v0.0.0-20130731160455-ca8abbf65d0e -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/sanathkr/go-yaml -Version: v0.0.0-20170819195128-ed9d249f429b -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sanathkr/go-yaml@v0.0.0-20170819195128-ed9d249f429b/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/sanathkr/yaml -Version: v1.0.1-0.20170819201035-0056894fa522 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sanathkr/yaml@v1.0.1-0.20170819201035-0056894fa522/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/santhosh-tekuri/jsonschema -Version: v1.2.4 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/santhosh-tekuri/jsonschema@v1.2.4/LICENSE: - -Copyright (c) 2017 Santhosh Kumar Tekuri. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -Dependency : github.com/satori/go.uuid -Version: v1.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/satori/go.uuid@v1.2.0/LICENSE: - -Copyright (C) 2013-2018 by Maxim Bublis - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/sergi/go-diff -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sergi/go-diff@v1.1.0/LICENSE: - -Copyright (c) 2012-2016 The go-diff Authors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/sirupsen/logrus -Version: v1.4.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sirupsen/logrus@v1.4.2/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Simon Eskildsen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/smartystreets/assertions -Version: v0.0.0-20180927180507-b2de0cb4f26d -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/smartystreets/assertions@v0.0.0-20180927180507-b2de0cb4f26d/LICENSE.md: - -Copyright (c) 2016 SmartyStreets, LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -NOTE: Various optional and subordinate components carry their own licensing -requirements and restrictions. Use of those components is subject to the terms -and conditions outlined the respective license of each component. - - --------------------------------------------------------------------------------- -Dependency : github.com/smartystreets/goconvey -Version: v0.0.0-20190330032615-68dc04aab96a -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/smartystreets/goconvey@v0.0.0-20190330032615-68dc04aab96a/LICENSE.md: - -Copyright (c) 2016 SmartyStreets, LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -NOTE: Various optional and subordinate components carry their own licensing -requirements and restrictions. Use of those components is subject to the terms -and conditions outlined the respective license of each component. - - --------------------------------------------------------------------------------- -Dependency : github.com/spaolacci/murmur3 -Version: v1.1.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spaolacci/murmur3@v1.1.0/LICENSE: - -Copyright 2013, Sébastien Paolacci. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the library nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/afero -Version: v1.2.2 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/afero@v1.2.2/LICENSE.txt: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/cast -Version: v1.3.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/cast@v1.3.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/jwalterweatherman -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/jwalterweatherman@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/viper -Version: v1.3.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/viper@v1.3.2/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/stretchr/objx -Version: v0.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/stretchr/objx@v0.2.0/LICENSE: - -The MIT License - -Copyright (c) 2014 Stretchr, Inc. -Copyright (c) 2017-2018 objx contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/syndtr/gocapability -Version: v0.0.0-20170704070218-db04d3cc01c8 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/syndtr/gocapability@v0.0.0-20170704070218-db04d3cc01c8/LICENSE: - -Copyright 2013 Suryandaru Triandana -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/ugorji/go -Version: v1.1.8 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/ugorji/go@v1.1.8/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2012-2015 Ugorji Nwoke. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/urfave/cli -Version: v0.0.0-20171014202726-7bc6a0acffa5 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urfave/cli@v0.0.0-20171014202726-7bc6a0acffa5/LICENSE: - -MIT License - -Copyright (c) 2016 Jeremy Saenz & Contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/urso/diag -Version: v0.0.0-20200210123136-21b3cc8eb797 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urso/diag@v0.0.0-20200210123136-21b3cc8eb797/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/urso/go-bin -Version: v0.0.0-20180220135811-781c575c9f0e -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urso/go-bin@v0.0.0-20180220135811-781c575c9f0e/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/urso/magetools -Version: v0.0.0-20190919040553-290c89e0c230 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/urso/qcgen -Version: v0.0.0-20180131103024-0b059e7db4f4 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urso/qcgen@v0.0.0-20180131103024-0b059e7db4f4/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/vbatts/tar-split -Version: v0.11.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/vbatts/tar-split@v0.11.1/LICENSE: - -Copyright (c) 2015 Vincent Batts, Raleigh, NC, USA - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors -may be used to endorse or promote products derived from this software without -specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/xdg/stringprep -Version: v1.0.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xdg/stringprep@v1.0.3/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - --------------------------------------------------------------------------------- -Dependency : github.com/xeipuuv/gojsonpointer -Version: v0.0.0-20190905194746-02993c407bfb -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xeipuuv/gojsonpointer@v0.0.0-20190905194746-02993c407bfb/LICENSE-APACHE-2.0.txt: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2015 xeipuuv - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xeipuuv/gojsonreference -Version: v0.0.0-20180127040603-bd5ef7bd5415 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xeipuuv/gojsonreference@v0.0.0-20180127040603-bd5ef7bd5415/LICENSE-APACHE-2.0.txt: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2015 xeipuuv - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xeipuuv/gojsonschema -Version: v0.0.0-20181112162635-ac52e6811b56 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xeipuuv/gojsonschema@v0.0.0-20181112162635-ac52e6811b56/LICENSE-APACHE-2.0.txt: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2015 xeipuuv - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xordataexchange/crypt -Version: v0.0.3-0.20170626215501-b2862e3d0a77 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xordataexchange/crypt@v0.0.3-0.20170626215501-b2862e3d0a77/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 XOR Data Exchange, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/yuin/gopher-lua -Version: v0.0.0-20170403160031-b402f3114ec7 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/yuin/gopher-lua@v0.0.0-20170403160031-b402f3114ec7/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Yusuke Inuzuka - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : go.elastic.co/fastjson -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.elastic.co/fastjson@v1.1.0/LICENSE: - -Copyright 2018 Elasticsearch BV - -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. - ---- - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : go.opencensus.io -Version: v0.23.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.opencensus.io@v0.23.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - --------------------------------------------------------------------------------- -Dependency : go.uber.org/goleak -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.uber.org/goleak@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2018 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : go.uber.org/tools -Version: v0.0.0-20190618225709-2cfd321de3ee -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.uber.org/tools@v0.0.0-20190618225709-2cfd321de3ee/LICENSE: - -Copyright (c) 2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/exp -Version: v0.0.0-20200224162631-6cc2880d07d6 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/exp@v0.0.0-20200224162631-6cc2880d07d6/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/image -Version: v0.0.0-20190802002840-cff245a6509b -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/image@v0.0.0-20190802002840-cff245a6509b/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/mobile -Version: v0.0.0-20190719004257-d2bd2a29d028 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/mobile@v0.0.0-20190719004257-d2bd2a29d028/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/mod -Version: v0.4.2 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/mod@v0.4.2/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/term -Version: v0.0.0-20210220032956-6a3ed077a48d -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/term@v0.0.0-20210220032956-6a3ed077a48d/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/xerrors -Version: v0.0.0-20200804184101-5ec99f83aff1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/xerrors@v0.0.0-20200804184101-5ec99f83aff1/LICENSE: - -Copyright (c) 2019 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : google.golang.org/appengine -Version: v1.6.7 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/google.golang.org/appengine@v1.6.7/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : google.golang.org/grpc/cmd/protoc-gen-go-grpc -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/airbrake/gobrake.v2 -Version: v2.0.9 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/airbrake/gobrake.v2@v2.0.9/LICENSE: - -Copyright (c) 2014 The Gobrake Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/alecthomas/kingpin.v2 -Version: v2.2.6 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/alecthomas/kingpin.v2@v2.2.6/COPYING: - -Copyright (C) 2014 Alec Thomas - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/check.v1 -Version: v1.0.0-20201130134442-10cb98267c6c -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/check.v1@v1.0.0-20201130134442-10cb98267c6c/LICENSE: - -Gocheck - A rich testing framework for Go - -Copyright (c) 2010-2013 Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/errgo.v2 -Version: v2.1.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/errgo.v2@v2.1.0/LICENSE: - -Copyright © 2013, Roger Peppe -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - * Neither the name of this project nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/fsnotify.v1 -Version: v1.4.7 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/fsnotify.v1@v1.4.7/LICENSE: - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2012 fsnotify Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/gemnasium/logrus-airbrake-hook.v2 -Version: v2.1.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/gemnasium/logrus-airbrake-hook.v2@v2.1.2/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Gemnasium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/aescts.v1 -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/aescts.v1@v1.0.1/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/dnsutils.v1 -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/dnsutils.v1@v1.0.1/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/goidentity.v3 -Version: v3.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/goidentity.v3@v3.0.0/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/rpc.v1 -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/rpc.v1@v1.1.0/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/tomb.v1 -Version: v1.0.0-20141024135613-dd632973f1e7 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/tomb.v1@v1.0.0-20141024135613-dd632973f1e7/LICENSE: - -tomb - support for clean goroutine termination in Go. - -Copyright (c) 2010-2011 - Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/yaml.v3 -Version: v3.0.0-20210107192922-496545a6307b -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/yaml.v3@v3.0.0-20210107192922-496545a6307b/LICENSE: - - -This project is covered by two different licenses: MIT and Apache. - -#### MIT License #### - -The following files were ported to Go from C files of libyaml, and thus -are still covered by their original MIT license, with the additional -copyright staring in 2011 when the project was ported over: - - apic.go emitterc.go parserc.go readerc.go scannerc.go - writerc.go yamlh.go yamlprivateh.go - -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -### Apache License ### - -All the remaining project files are covered by the Apache license: - -Copyright (c) 2011-2019 Canonical Ltd - -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. - - --------------------------------------------------------------------------------- -Dependency : gotest.tools/v3 -Version: v3.0.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gotest.tools/v3@v3.0.3/LICENSE: - -Copyright 2018 gotest.tools authors - -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. - - --------------------------------------------------------------------------------- -Dependency : honnef.co/go/tools -Version: v0.0.1-2020.1.4 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/honnef.co/go/tools@v0.0.1-2020.1.4/LICENSE: - -Copyright (c) 2016 Dominik Honnef - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/gengo -Version: v0.0.0-20200413195148-3a45101e95ac -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/gengo@v0.0.0-20200413195148-3a45101e95ac/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014 The Kubernetes Authors. - - 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. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/klog/v2 -Version: v2.8.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/klog/v2@v2.8.0/LICENSE: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/kube-openapi -Version: v0.0.0-20210305001622-591a79e4bda7 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/kube-openapi@v0.0.0-20210305001622-591a79e4bda7/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/kubernetes -Version: v1.13.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/kubernetes@v1.13.0/Godeps/LICENSES: - -================================================================================ -= Kubernetes licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/bitbucket.org/bertimus9/systemstat licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Phillip Bond - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/bitbucket.org/bertimus9/systemstat/LICENSE 6f7ba8122a9b3146266dafa39c5b8ee3 -================================================================================ - - -================================================================================ -= vendor/bitbucket.org/ww/goautoneg licensed under: = - -PACKAGE - -package goautoneg -import "bitbucket.org/ww/goautoneg" - -HTTP Content-Type Autonegotiation. - -The functions in this package implement the behaviour specified in -http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html - -Copyright (c) 2011, Open Knowledge Foundation Ltd. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - Neither the name of the Open Knowledge Foundation Ltd. nor the - names of its contributors may be used to endorse or promote - products derived from this software without specific prior written - permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -FUNCTIONS - -func Negotiate(header string, alternatives []string) (content_type string) -Negotiate the most appropriate content_type given the accept header -and a list of alternatives. - -func ParseAccept(header string) (accept []Accept) -Parse an Accept Header string returning a sorted list -of clauses - - -TYPES - -type Accept struct { - Type, SubType string - Q float32 - Params map[string]string -} -Structure to represent a clause in an HTTP Accept Header - - -SUBDIRECTORIES - - .hg - -= vendor/bitbucket.org/ww/goautoneg/README.txt a33eda65f1bc658f358e1d690c6a93d4 -================================================================================ - - -================================================================================ -= vendor/cloud.google.com/go/compute/metadata licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014 Google Inc. - - 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. - -= vendor/cloud.google.com/go/LICENSE a873c5645c184d51e0f9b34e1d7cf559 -================================================================================ - - -================================================================================ -= vendor/cloud.google.com/go/internal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014 Google Inc. - - 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. - -= vendor/cloud.google.com/go/LICENSE a873c5645c184d51e0f9b34e1d7cf559 -================================================================================ - - -================================================================================ -= vendor/github.com/armon/circbuf licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Armon Dadgar - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/armon/circbuf/LICENSE d2d77030c0183e3d1e66d26dc1f243be -================================================================================ - - -================================================================================ -= vendor/github.com/asaskevich/govalidator licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Alex Saskevich - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/asaskevich/govalidator/LICENSE 9548240229052f3a5f5bdf14ac19bbe3 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/awserr licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/awsutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/client licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/client/metadata licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/corehandlers licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/csm licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/defaults licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/ec2metadata licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/endpoints licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/request licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/session licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/signer/v4 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/internal/sdkio licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/internal/sdkrand licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/internal/shareddefaults licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/query licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/rest licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/autoscaling licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/ec2 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/ecr licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/elb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/elbv2 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/kms licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/sts licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-10-01/compute licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/containerregistry/mgmt/2017-10-01/containerregistry licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/storage licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/version licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-ansiterm licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/Azure/go-ansiterm/LICENSE 6000442264015a23894024af9930539b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-ansiterm/winterm licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/Azure/go-ansiterm/LICENSE 6000442264015a23894024af9930539b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/adal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/azure licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/date licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/to licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/validation licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/logger licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/version licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/cmd/gazelle licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/config licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/flag licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/label licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/language licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/language/go licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/language/proto licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/merger licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/pathtools licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/repos licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/resolve licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/rule licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/testtools licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/version licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/walk licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/wspace licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/buildtools/build licensed under: = - -Copyright 2016 Google Inc. All Rights Reserved. - -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. - -= vendor/github.com/bazelbuild/buildtools/LICENSE adb52eb384caedba181cd51fbcdf4b99 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/buildtools/tables licensed under: = - -Copyright 2016 Google Inc. All Rights Reserved. - -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. - -= vendor/github.com/bazelbuild/buildtools/LICENSE adb52eb384caedba181cd51fbcdf4b99 -================================================================================ - - -================================================================================ -= vendor/github.com/beorn7/perks/quantile licensed under: = - -Copyright (C) 2013 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/beorn7/perks/LICENSE 0d0738f37ee8dc0b5f88a32e83c60198 -================================================================================ - - -================================================================================ -= vendor/github.com/blang/semver licensed under: = - -The MIT License - -Copyright (c) 2014 Benedikt Lang - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -= vendor/github.com/blang/semver/LICENSE 5a3ade42a900439691ebc22013660cae -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext licensed under: = - -Copyright 2013 ChaiShushan . All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext/mo licensed under: = - -Copyright 2013 ChaiShushan . All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext/plural licensed under: = - -Copyright 2013 ChaiShushan . All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext/po licensed under: = - -Copyright 2013 ChaiShushan . All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/client9/misspell licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015-2017 Nick Galbreath - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/client9/misspell/LICENSE 387f6b7d6741c8a7f4f7e3c2bbdf97e4 -================================================================================ - - -================================================================================ -= vendor/github.com/client9/misspell/cmd/misspell licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015-2017 Nick Galbreath - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/client9/misspell/LICENSE 387f6b7d6741c8a7f4f7e3c2bbdf97e4 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/bundle licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/certinfo licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/client licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/crl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/gencrl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/generator licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/health licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/info licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/initca licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/ocsp licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/revoke licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/scan licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/signhandler licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/auth licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/bundler licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certdb licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certdb/dbconf licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certdb/sql licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certinfo licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/bundle licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/certinfo licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/crl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/gencert licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/gencrl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/gencsr licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/genkey licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/info licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocspdump licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocsprefresh licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocspserve licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocspsign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/printdefault licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/revoke licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/scan licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/selfsign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/serve licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/sign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/version licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cmd/cfssl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cmd/cfssljson licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/config licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/crl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/crypto/pkcs7 licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/csr licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/errors licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/helpers licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/helpers/derhelpers licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/info licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/initca licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/log licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/ocsp licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/ocsp/config licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/revoke licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/scan licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/scan/crypto/tls licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/selfsign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer/local licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer/remote licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer/universal licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/ubiquity licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/clusterhq/flocker-go licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014-2016 ClusterHQ - - 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. - -= vendor/github.com/clusterhq/flocker-go/LICENSE d8103d9796cd0e951379d0834edad066 -================================================================================ - - -================================================================================ -= vendor/github.com/codedellemc/goscaleio licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/codedellemc/goscaleio/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/codedellemc/goscaleio/types/v1 licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/codedellemc/goscaleio/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/container-storage-interface/spec/lib/go/csi licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/container-storage-interface/spec/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/console licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/containerd/console/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/services/containers/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/services/tasks/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/services/version/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/types licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/types/task licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/containers licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/dialer licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/errdefs licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/namespaces licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/libcni licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/invoke licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/types licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/types/020 licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/types/current licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/version licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/bbolt licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Ben Johnson - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/coreos/bbolt/LICENSE 13b2a308eefa10d841e3bf2467dbe07a -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/alarm licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/auth licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/auth/authpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/client licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3/concurrency licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3/namespace licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3/naming licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/compactor licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/discovery licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/embed licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/error licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/etcdhttp licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v2http licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v2http/httptypes licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v2v3 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3client licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3election licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb/gw licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3lock licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb/gw licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3rpc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/auth licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/etcdserverpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/gw licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/membership licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/stats licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/integration licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/lease licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/lease/leasehttp licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/lease/leasepb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/mvcc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/mvcc/backend licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/mvcc/mvccpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/adt licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/contention licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/cors licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/cpuutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/crc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/debugutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/fileutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/httputil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/idutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/ioutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/logutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/netutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/pathutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/pbutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/runtime licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/schedule licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/srv licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/testutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/tlsutil licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/transport licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/types licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/wait licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/proxy/grpcproxy licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/proxy/grpcproxy/adapter licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/proxy/grpcproxy/cache licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/raft licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/raft/raftpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/rafthttp licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/snap licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/snap/snappb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/store licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/version licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/wal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/wal/walpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-oidc licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/coreos/go-oidc/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-semver/semver licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/go-semver/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/daemon licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/dbus licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/journal licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/util licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/pkg/capnslog licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/coreos/pkg/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/pkg/dlopen licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/coreos/pkg/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/rkt/api/v1alpha licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/coreos/rkt/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/github.com/cpuguy83/go-md2man/md2man licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Brian Goff - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/cpuguy83/go-md2man/LICENSE.md 80794f9009df723bbc6fe19234c9f517 -================================================================================ - - -================================================================================ -= vendor/github.com/cyphar/filepath-securejoin licensed under: = - -Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved. -Copyright (C) 2017 SUSE LLC. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cyphar/filepath-securejoin/LICENSE 8d322afab99e1998dbfcc712f94e824d -================================================================================ - - -================================================================================ -= vendor/github.com/d2g/dhcp4 licensed under: = - -Copyright (c) 2013 Skagerrak Software Limited. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Skagerrak Software Limited nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/github.com/d2g/dhcp4/LICENSE 0187683301a45e8ea393bb2ffd7889c8 -================================================================================ - - -================================================================================ -= vendor/github.com/d2g/dhcp4client licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/d2g/dhcp4client/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/daaku/go.zipexe licensed under: = - -The MIT License (MIT) - -Copyright © 2012-2015 Carlos Castillo - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/daaku/go.zipexe/license 2285ef50c2d5083f5bb92af715e5a378 -================================================================================ - - -================================================================================ -= vendor/github.com/davecgh/go-spew/spew licensed under: = - -ISC License - -Copyright (c) 2012-2016 Dave Collins - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -= vendor/github.com/davecgh/go-spew/LICENSE 818c0a1d81cfcfdb7ecd58db268bab7e -================================================================================ - - -================================================================================ -= vendor/github.com/daviddengcn/go-colortext licensed under: = - -BSD License -=========== - -Copyright (c) 2016, David Deng -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of go-colortext nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -MIT License -=========== - -Copyright (c) 2016 David Deng - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/daviddengcn/go-colortext/LICENSE a802db7d9a036fb71c12cf20966510dc -================================================================================ - - -================================================================================ -= vendor/github.com/dgrijalva/jwt-go licensed under: = - -Copyright (c) 2012 Dave Grijalva - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -= vendor/github.com/dgrijalva/jwt-go/LICENSE 276f2f3ba3749d25f6a6f5fb852d462e -================================================================================ - - -================================================================================ -= vendor/github.com/docker/distribution/digestset licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/docker/distribution/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/distribution/reference licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/docker/distribution/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/blkiodev licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/container licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/events licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/filters licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/image licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/mount licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/network licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/registry licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/strslice licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/swarm licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/swarm/runtime licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/time licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/versions licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/volume licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/client licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonlog licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/jsonmessage licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/mount licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/parsers licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/parsers/operatingsystem licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/stdcopy licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/sysinfo licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/term licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/term/windows licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-connections/nat licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-connections/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-connections/sockets licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-connections/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-connections/tlsconfig licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-connections/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-units licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-units/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/libnetwork/ipvs licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - - -= vendor/github.com/docker/libnetwork/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/spdystream licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014-2015 Docker, Inc. - - 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. - -= vendor/github.com/docker/spdystream/LICENSE 246dc1c1661293602d98ff9113c3be48 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/spdystream/spdy licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014-2015 Docker, Inc. - - 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. - -= vendor/github.com/docker/spdystream/LICENSE 246dc1c1661293602d98ff9113c3be48 -================================================================================ - - -================================================================================ -= vendor/github.com/elazarl/go-bindata-assetfs licensed under: = - -Copyright (c) 2014, Elazar Leibovich -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/elazarl/go-bindata-assetfs/LICENSE 722abb44e97dc8f098516e09e5564a6a -================================================================================ - - -================================================================================ -= vendor/github.com/elazarl/goproxy licensed under: = - -Copyright (c) 2012 Elazar Leibovich. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Elazar Leibovich. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/elazarl/goproxy/LICENSE e2e14e5f5bd856768da39707ed93cd41 -================================================================================ - - -================================================================================ -= vendor/github.com/emicklei/go-restful licensed under: = - -Copyright (c) 2012,2013 Ernest Micklei - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/github.com/emicklei/go-restful/LICENSE 2ebc1c12a0f4eae5394522e31961e1de -================================================================================ - - -================================================================================ -= vendor/github.com/emicklei/go-restful-swagger12 licensed under: = - -Copyright (c) 2017 Ernest Micklei - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/github.com/emicklei/go-restful-swagger12/LICENSE b1ce415d97e837c8677d332b274d4f0b -================================================================================ - - -================================================================================ -= vendor/github.com/emicklei/go-restful/log licensed under: = - -Copyright (c) 2012,2013 Ernest Micklei - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/github.com/emicklei/go-restful/LICENSE 2ebc1c12a0f4eae5394522e31961e1de -================================================================================ - - -================================================================================ -= vendor/github.com/euank/go-kmsg-parser/kmsgparser licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/euank/go-kmsg-parser/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/evanphx/json-patch licensed under: = - -Copyright (c) 2014, Evan Phoenix -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of the Evan Phoenix nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/evanphx/json-patch/LICENSE 72c842ec53c3334a81b6d65b6f9025a3 -================================================================================ - - -================================================================================ -= vendor/github.com/exponent-io/jsonpath licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Exponent Labs LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/exponent-io/jsonpath/LICENSE 42f582355f11b1d4bc8615214b7f0c38 -================================================================================ - - -================================================================================ -= vendor/github.com/fatih/camelcase licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Fatih Arslan - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/fatih/camelcase/LICENSE.md 4c59b216ce25dc182cdb837e07ba07c0 -================================================================================ - - -================================================================================ -= vendor/github.com/fsnotify/fsnotify licensed under: = - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2012 fsnotify Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/fsnotify/fsnotify/LICENSE c38914c9a7ab03bb2b96d4baaee10769 -================================================================================ - - -================================================================================ -= vendor/github.com/GeertJohan/go.rice licensed under: = - -Copyright (c) 2013, Geert-Johan Riemer -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/github.com/GeertJohan/go.rice/LICENSE d5ffb28cde0ca932cbab7e1e1d52c20e -================================================================================ - - -================================================================================ -= vendor/github.com/GeertJohan/go.rice/embedded licensed under: = - -Copyright (c) 2013, Geert-Johan Riemer -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/github.com/GeertJohan/go.rice/LICENSE d5ffb28cde0ca932cbab7e1e1d52c20e -================================================================================ - - -================================================================================ -= vendor/github.com/ghodss/yaml licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/ghodss/yaml/LICENSE 0ceb9ff3b27d3a8cf451ca3785d73c71 -================================================================================ - - -================================================================================ -= vendor/github.com/globalsign/mgo/bson licensed under: = - -mgo - MongoDB driver for Go - -Copyright (c) 2010-2013 - Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/globalsign/mgo/LICENSE 566e96676859b5704130b80941bc9f1f -================================================================================ - - -================================================================================ -= vendor/github.com/globalsign/mgo/internal/json licensed under: = - -mgo - MongoDB driver for Go - -Copyright (c) 2010-2013 - Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/globalsign/mgo/LICENSE 566e96676859b5704130b80941bc9f1f -================================================================================ - - -================================================================================ -= vendor/github.com/go-ini/ini licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-ini/ini/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/analysis licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/analysis/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/analysis/internal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/analysis/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/errors licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/errors/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/jsonpointer licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/jsonpointer/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/jsonreference licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/jsonreference/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/loads licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/loads/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/runtime licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/runtime/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/spec licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/spec/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/strfmt licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/strfmt/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/swag licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/swag/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/validate licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/go-openapi/validate/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-ozzo/ozzo-validation licensed under: = - -The MIT License (MIT) -Copyright (c) 2016, Qiang Xue - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or -substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/go-ozzo/ozzo-validation/LICENSE da12d993f2ce14947ad6eec35520b081 -================================================================================ - - -================================================================================ -= vendor/github.com/go-ozzo/ozzo-validation/is licensed under: = - -The MIT License (MIT) -Copyright (c) 2016, Qiang Xue - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or -substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/go-ozzo/ozzo-validation/LICENSE da12d993f2ce14947ad6eec35520b081 -================================================================================ - - -================================================================================ -= vendor/github.com/go-sql-driver/mysql licensed under: = - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - -= vendor/github.com/go-sql-driver/mysql/LICENSE 815ca599c9df247a0c7f619bab123dad -================================================================================ - - -================================================================================ -= vendor/github.com/godbus/dbus licensed under: = - -Copyright (c) 2013, Georg Reinke (), Google -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/godbus/dbus/LICENSE 09042bd5c6c96a2b9e45ddf1bc517eed -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/gogoproto licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/compare licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/defaultcheck licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/description licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/embedcheck licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/enumstringer licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/equal licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/face licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/gostring licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/marshalto licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/oneofcheck licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/populate licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/size licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/stringer licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/testgen licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/union licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/unmarshal licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/proto licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/generator licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/grpc licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/plugin licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/sortkeys licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/types licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/vanity licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/vanity/command licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/golang/groupcache/lru licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/golang/groupcache/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/mock/gomock licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/golang/mock/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/jsonpb licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/proto licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/protoc-gen-go/descriptor licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/any licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/duration licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/struct licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/timestamp licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/wrappers licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/google/btree licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/btree/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/accelerators licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/cache/memory licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/client/v2 licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/collector licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/common licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/containerd licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/crio licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/docker licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/libcontainer licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/mesos licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/raw licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/rkt licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/systemd licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/devicemapper licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/events licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/fs licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/info/v1 licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/info/v2 licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/machine licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager/watcher licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager/watcher/raw licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager/watcher/rkt licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/metrics licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/storage licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/summary licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/cloudinfo licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/cpuload licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/cpuload/netlink licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/docker licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/oomparser licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/sysfs licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/sysinfo licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/version licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/zfs licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/asn1 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/client licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/client/configpb licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/jsonclient licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/tls licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/x509 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/x509/pkix licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/gofuzz licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/google/gofuzz/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/uuid licensed under: = - -Copyright (c) 2009,2014 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/google/uuid/LICENSE 88073b6dd8ec00fe09da59e0b6dfded1 -================================================================================ - - -================================================================================ -= vendor/github.com/googleapis/gnostic/compiler licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - -= vendor/github.com/googleapis/gnostic/LICENSE b1e01b26bacfc2232046c90a330332b3 -================================================================================ - - -================================================================================ -= vendor/github.com/googleapis/gnostic/extensions licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - -= vendor/github.com/googleapis/gnostic/LICENSE b1e01b26bacfc2232046c90a330332b3 -================================================================================ - - -================================================================================ -= vendor/github.com/googleapis/gnostic/OpenAPIv2 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - -= vendor/github.com/googleapis/gnostic/LICENSE b1e01b26bacfc2232046c90a330332b3 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/extensions/volumeactions licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/v1/volumes licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/v2/volumes licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/v3/volumes licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/common/extensions licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/attachinterfaces licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/volumeattach licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/flavors licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/images licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/servers licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/tenants licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/tokens licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v3/extensions/trusts licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v3/tokens licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/external licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/layer3/floatingips licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/layer3/routers licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/listeners licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/loadbalancers licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/monitors licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/pools licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/groups licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/rules licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/networks licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/utils licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/pagination licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gorilla/websocket licensed under: = - -Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/gorilla/websocket/LICENSE c007b54a1743d596f46b2748d9f8c044 -================================================================================ - - -================================================================================ -= vendor/github.com/gregjones/httpcache licensed under: = - -Copyright © 2012 Greg Jones (greg.jones@gmail.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/github.com/gregjones/httpcache/LICENSE.txt 3cfef421226b2dacde78a4871380ac24 -================================================================================ - - -================================================================================ -= vendor/github.com/gregjones/httpcache/diskcache licensed under: = - -Copyright © 2012 Greg Jones (greg.jones@gmail.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/github.com/gregjones/httpcache/LICENSE.txt 3cfef421226b2dacde78a4871380ac24 -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/go-grpc-middleware licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. -= vendor/github.com/grpc-ecosystem/go-grpc-middleware/LICENSE 7ab5c73bb7e4679b16dd7c11b3559acf -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/go-grpc-prometheus licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. -= vendor/github.com/grpc-ecosystem/go-grpc-prometheus/LICENSE 7ab5c73bb7e4679b16dd7c11b3559acf -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/grpc-gateway/runtime licensed under: = - -Copyright (c) 2015, Gengo, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of Gengo, Inc. nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/grpc-ecosystem/grpc-gateway/LICENSE.txt c510a2a01572b82d27f28fd4d02ca318 -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/internal licensed under: = - -Copyright (c) 2015, Gengo, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of Gengo, Inc. nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/grpc-ecosystem/grpc-gateway/LICENSE.txt c510a2a01572b82d27f28fd4d02ca318 -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/grpc-gateway/utilities licensed under: = - -Copyright (c) 2015, Gengo, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of Gengo, Inc. nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/grpc-ecosystem/grpc-gateway/LICENSE.txt c510a2a01572b82d27f28fd4d02ca318 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/golang-lru licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - -= vendor/github.com/hashicorp/golang-lru/LICENSE f27a50d2e878867827842f2c60e30bfc -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/golang-lru/simplelru licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - -= vendor/github.com/hashicorp/golang-lru/LICENSE f27a50d2e878867827842f2c60e30bfc -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/ast licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/parser licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/scanner licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/strconv licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/token licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/json/parser licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/json/scanner licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/json/token licensed under: = - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/heketi/heketi/client/api/go-client licensed under: = - -Heketi code is released under various licenses: - -The REST API client code (in go and python) is released -under a dual license of Apache 2.0 or LGPLv3+. - -The other parts of heketi (server, cli, tests, ...) are released -under a dual license of LGPLv3+ or GPLv2. - -= vendor/github.com/heketi/heketi/LICENSE a58e72c3bda574189508cb90d56fa19f -================================================================================ - - -================================================================================ -= vendor/github.com/heketi/heketi/pkg/glusterfs/api licensed under: = - -Heketi code is released under various licenses: - -The REST API client code (in go and python) is released -under a dual license of Apache 2.0 or LGPLv3+. - -The other parts of heketi (server, cli, tests, ...) are released -under a dual license of LGPLv3+ or GPLv2. - -= vendor/github.com/heketi/heketi/LICENSE a58e72c3bda574189508cb90d56fa19f -================================================================================ - - -================================================================================ -= vendor/github.com/heketi/heketi/pkg/utils licensed under: = - -Heketi code is released under various licenses: - -The REST API client code (in go and python) is released -under a dual license of Apache 2.0 or LGPLv3+. - -The other parts of heketi (server, cli, tests, ...) are released -under a dual license of LGPLv3+ or GPLv2. - -= vendor/github.com/heketi/heketi/LICENSE a58e72c3bda574189508cb90d56fa19f -================================================================================ - - -================================================================================ -= vendor/github.com/imdario/mergo licensed under: = - -Copyright (c) 2013 Dario Castañé. All rights reserved. -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/imdario/mergo/LICENSE ff13e03bb57bf9c52645f2f942afa28b -================================================================================ - - -================================================================================ -= vendor/github.com/inconshreveable/mousetrap licensed under: = - -Copyright 2014 Alan Shreve - -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. - -= vendor/github.com/inconshreveable/mousetrap/LICENSE b23cff9db13f093a4e6ff77105cbd8eb -================================================================================ - - -================================================================================ -= vendor/github.com/JeffAshton/win_pdh licensed under: = - -Copyright (c) 2010 The win_pdh Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/JeffAshton/win_pdh/LICENSE fadcabe0503181faf8d4a9579bed3b7f -================================================================================ - - -================================================================================ -= vendor/github.com/jmespath/go-jmespath licensed under: = - -Copyright 2015 James Saryerwinnie - -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. - -= vendor/github.com/jmespath/go-jmespath/LICENSE 9abfa8353fce3f2cb28364e1e9016852 -================================================================================ - - -================================================================================ -= vendor/github.com/jmhodges/clock licensed under: = - -The MIT License (MIT) -Copyright © 2014 Jeff Hodges - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the “Software”), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -= vendor/github.com/jmhodges/clock/LICENSE bc91f6bbbc0460d728657b023f3f6596 -================================================================================ - - -================================================================================ -= vendor/github.com/jmoiron/sqlx licensed under: = - - Copyright (c) 2013, Jason Moiron - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following - conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -= vendor/github.com/jmoiron/sqlx/LICENSE 4353e10ea313ec47121dd2c7d89ce6b9 -================================================================================ - - -================================================================================ -= vendor/github.com/jmoiron/sqlx/reflectx licensed under: = - - Copyright (c) 2013, Jason Moiron - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following - conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -= vendor/github.com/jmoiron/sqlx/LICENSE 4353e10ea313ec47121dd2c7d89ce6b9 -================================================================================ - - -================================================================================ -= vendor/github.com/jonboulle/clockwork licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/jonboulle/clockwork/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/github.com/json-iterator/go licensed under: = - -MIT License - -Copyright (c) 2016 json-iterator - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/json-iterator/go/LICENSE 0b69744b481d72d30dbf69f84a451cfd -================================================================================ - - -================================================================================ -= vendor/github.com/jteeuwen/go-bindata licensed under: = - -This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication -license. Its contents can be found at: -http://creativecommons.org/publicdomain/zero/1.0 - -= vendor/github.com/jteeuwen/go-bindata/LICENSE 8dcedca69f7a474372829521f37954b1 -================================================================================ - - -================================================================================ -= vendor/github.com/jteeuwen/go-bindata/go-bindata licensed under: = - -This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication -license. Its contents can be found at: -http://creativecommons.org/publicdomain/zero/1.0 - -= vendor/github.com/jteeuwen/go-bindata/LICENSE 8dcedca69f7a474372829521f37954b1 -================================================================================ - - -================================================================================ -= vendor/github.com/kardianos/osext licensed under: = - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/kardianos/osext/LICENSE 591778525c869cdde0ab5a1bf283cd81 -================================================================================ - - -================================================================================ -= vendor/github.com/karrick/godirwalk licensed under: = - -BSD 2-Clause License - -Copyright (c) 2017, Karrick McDermott -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/karrick/godirwalk/LICENSE 7bea66fc0a31c6329f9392034bee75d2 -================================================================================ - - -================================================================================ -= vendor/github.com/kisielk/sqlstruct licensed under: = - -Copyright 2012 Kamil Kisiel - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/kisielk/sqlstruct/LICENSE bc5911f8d3b8034f564b63d7ea436519 -================================================================================ - - -================================================================================ -= vendor/github.com/kr/fs licensed under: = - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/kr/fs/LICENSE 591778525c869cdde0ab5a1bf283cd81 -================================================================================ - - -================================================================================ -= vendor/github.com/kr/pretty licensed under: = - -The MIT License (MIT) - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/kr/pretty/License 9d305c2010c6891ee4f3cd42a562f78f -================================================================================ - - -================================================================================ -= vendor/github.com/kr/text licensed under: = - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/kr/text/License 449bfedd81a372635934cf9ce004c0cf -================================================================================ - - -================================================================================ -= vendor/github.com/kubernetes/repo-infra/kazel licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/kubernetes/repo-infra/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/lib/pq licensed under: = - -Copyright (c) 2011-2013, 'pq' Contributors -Portions Copyright (C) 2011 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/lib/pq/LICENSE.md 0eab29964025b358179aa6d8f7db14bf -================================================================================ - - -================================================================================ -= vendor/github.com/lib/pq/oid licensed under: = - -Copyright (c) 2011-2013, 'pq' Contributors -Portions Copyright (C) 2011 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/lib/pq/LICENSE.md 0eab29964025b358179aa6d8f7db14bf -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api/client licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api/client/volume licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api/spec licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/pkg/parser licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/pkg/units licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/volume licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/magiconair/properties licensed under: = - -goproperties - properties file decoder for Go - -Copyright (c) 2013-2014 - Frank Schroeder - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/magiconair/properties/LICENSE c383a608fb9a0d227953e928803b9631 -================================================================================ - - -================================================================================ -= vendor/github.com/mailru/easyjson/buffer licensed under: = - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/mailru/easyjson/LICENSE 819e81c2ec13e1bbc47dc5e90bb4d88b -================================================================================ - - -================================================================================ -= vendor/github.com/mailru/easyjson/jlexer licensed under: = - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/mailru/easyjson/LICENSE 819e81c2ec13e1bbc47dc5e90bb4d88b -================================================================================ - - -================================================================================ -= vendor/github.com/mailru/easyjson/jwriter licensed under: = - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/mailru/easyjson/LICENSE 819e81c2ec13e1bbc47dc5e90bb4d88b -================================================================================ - - -================================================================================ -= vendor/github.com/MakeNowJust/heredoc licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014-2017 TSUYUSATO Kitsune - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/MakeNowJust/heredoc/LICENSE 59c4411f6d7dfdaa85623e672d3d4438 -================================================================================ - - -================================================================================ -= vendor/github.com/marstr/guid licensed under: = - -MIT License - -Copyright (c) 2016 Martin Strobel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/marstr/guid/LICENSE.txt 356484d12e6ad8a7c2d360b236e9a9c8 -================================================================================ - - -================================================================================ -= vendor/github.com/mattn/go-shellwords licensed under: = - -The MIT License (MIT) - -Copyright (c) 2017 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/mattn/go-shellwords/LICENSE e5116fc268f5118168ff06a271b50ef9 -================================================================================ - - -================================================================================ -= vendor/github.com/mattn/go-sqlite3 licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/mattn/go-sqlite3/LICENSE 2b7590a6661bc1940f50329c495898c6 -================================================================================ - - -================================================================================ -= vendor/github.com/matttproud/golang_protobuf_extensions/pbutil licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/agent licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/agent/calls licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/client licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/debug licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/codecs licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/framing licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/json licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/proto licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/httpcli licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/httpcli/apierrors licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/recordio licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/roles licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mholt/caddy/caddyfile licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/mholt/caddy/LICENSE.txt e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/Microsoft/go-winio licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/Microsoft/go-winio/LICENSE 69205ff73858f2c22b2ca135b557e8ef -================================================================================ - - -================================================================================ -= vendor/github.com/Microsoft/hcsshim licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/Microsoft/hcsshim/LICENSE d4c2cbbea5ee1e7c86dff68a7073718e -================================================================================ - - -================================================================================ -= vendor/github.com/miekg/dns licensed under: = - -Extensions of the original work are copyright (c) 2011 Miek Gieben - -As this is fork of the official Go code the same license applies: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/miekg/dns/LICENSE 147353de6868a20caa562d26eab7b3c5 -================================================================================ - - -================================================================================ -= vendor/github.com/mindprince/gonvml licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/mindprince/gonvml/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/mistifyio/go-zfs licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright (c) 2014, OmniTI Computer Consulting, Inc. - - 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. -= vendor/github.com/mistifyio/go-zfs/LICENSE cce9462224bfb44c1866ef7bd5eddf54 -================================================================================ - - -================================================================================ -= vendor/github.com/mitchellh/go-wordwrap licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/mitchellh/go-wordwrap/LICENSE.md 56da355a12d4821cda57b8f23ec34bc4 -================================================================================ - - -================================================================================ -= vendor/github.com/mitchellh/mapstructure licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/mitchellh/mapstructure/LICENSE 3f7765c3d4f58e1f84c4313cecf0f5bd -================================================================================ - - -================================================================================ -= vendor/github.com/modern-go/concurrent licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/modern-go/concurrent/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/modern-go/reflect2 licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/modern-go/reflect2/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/mohae/deepcopy licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Joel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/mohae/deepcopy/LICENSE 268dc9c546e3de67a93c1d12a039d702 -================================================================================ - - -================================================================================ -= vendor/github.com/mrunalp/fileutils licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/mrunalp/fileutils/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/mvdan/xurls licensed under: = - -Copyright (c) 2015, Daniel Martí. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/mvdan/xurls/LICENSE d459301ff3fc917904837249508d99af -================================================================================ - - -================================================================================ -= vendor/github.com/mxk/go-flowrate/flowrate licensed under: = - -Copyright (c) 2014 The Go-FlowRate Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the - distribution. - - * Neither the name of the go-flowrate project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/mxk/go-flowrate/LICENSE 781f3c14fa867bae781c9e409831f954 -================================================================================ - - -================================================================================ -= vendor/github.com/Nvveen/Gotty licensed under: = - -Copyright (c) 2012, Neal van Veen (nealvanveen@gmail.com) -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The views and conclusions contained in the software and documentation are those -of the authors and should not be interpreted as representing official policies, -either expressed or implied, of the FreeBSD Project. - -= vendor/github.com/Nvveen/Gotty/LICENSE ab11220c6af5f3758ccae7bf525f8dec -================================================================================ - - -================================================================================ -= vendor/github.com/NYTimes/gziphandler licensed under: = - -Copyright (c) 2015 The New York Times Company - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library 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. - -= vendor/github.com/NYTimes/gziphandler/LICENSE.md e30b94cbe70132b181f72f953fbb3c82 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/config licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/convert licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/interrupthandler licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/nodot licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/testrunner licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/testsuite licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/watch licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/codelocation licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/containernode licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/failer licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/leafnodes licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/remote licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/spec licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/specrunner licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/spec_iterator licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/suite licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/testingtproxy licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/writer licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters/stenographer licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/types licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/format licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/gstruct licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/gstruct/errors licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/assertion licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/asyncassertion licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/oraclematcher licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/testingtsupport licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/edge licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/node licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/util licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/types licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/go-digest licensed under: = - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/opencontainers/go-digest/LICENSE.code 9cd86830b557232ce55e2a6b47387471 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/image-spec/specs-go licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2016 The Linux Foundation. - - 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. - -= vendor/github.com/opencontainers/image-spec/LICENSE 27ef03aa2da6e424307f102e8b42621d -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/image-spec/specs-go/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2016 The Linux Foundation. - - 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. - -= vendor/github.com/opencontainers/image-spec/LICENSE 27ef03aa2da6e424307f102e8b42621d -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/apparmor licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/cgroups licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/cgroups/systemd licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/configs licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/configs/validate licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/criurpc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/intelrdt licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/keys licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/mount licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/seccomp licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/stacktrace licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/system licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/user licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/utils licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runtime-spec/specs-go licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2015 The Linux Foundation. - - 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. - -= vendor/github.com/opencontainers/runtime-spec/LICENSE b355a61a394a504dacde901c958f662c -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/selinux/go-selinux licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/opencontainers/selinux/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/selinux/go-selinux/label licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/opencontainers/selinux/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/pborman/uuid licensed under: = - -Copyright (c) 2009,2014 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pborman/uuid/LICENSE 88073b6dd8ec00fe09da59e0b6dfded1 -================================================================================ - - -================================================================================ -= vendor/github.com/pelletier/go-toml licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/pelletier/go-toml/LICENSE dc9ea87a81f62b8871b2a4158edbfde6 -================================================================================ - - -================================================================================ -= vendor/github.com/peterbourgon/diskv licensed under: = - -Copyright (c) 2011-2012 Peter Bourgon - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/peterbourgon/diskv/LICENSE f9f3e815fc84aa04c4f4db33c553eef9 -================================================================================ - - -================================================================================ -= vendor/github.com/pkg/errors licensed under: = - -Copyright (c) 2015, Dave Cheney -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pkg/errors/LICENSE 6fe682a02df52c6653f33bd0f7126b5a -================================================================================ - - -================================================================================ -= vendor/github.com/pkg/sftp licensed under: = - -Copyright (c) 2013, Dave Cheney -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pkg/sftp/LICENSE 452fc5cc5a9127a0e828d73423d45035 -================================================================================ - - -================================================================================ -= vendor/github.com/pmezard/go-difflib/difflib licensed under: = - -Copyright (c) 2013, Patrick Mezard -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - The names of its contributors may not be used to endorse or promote -products derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pmezard/go-difflib/LICENSE e9a2ebb8de779a07500ddecca806145e -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/cachecontrol licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/pquerna/cachecontrol/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/cachecontrol/cacheobject licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/pquerna/cachecontrol/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/ffjson/fflib/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/pquerna/ffjson/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/ffjson/fflib/v1/internal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/pquerna/ffjson/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/client_golang/prometheus licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/client_golang/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/client_golang/prometheus/promhttp licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/client_golang/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/client_model/go licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/client_model/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/common/expfmt licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/common/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/common/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/common/model licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/common/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/procfs licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/procfs/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/procfs/xfs licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/prometheus/procfs/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/PuerkitoBio/purell licensed under: = - -Copyright (c) 2012, Martin Angers -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/PuerkitoBio/purell/LICENSE fb8b39492731abb9a3d68575f3eedbfa -================================================================================ - - -================================================================================ -= vendor/github.com/PuerkitoBio/urlesc licensed under: = - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/PuerkitoBio/urlesc/LICENSE 591778525c869cdde0ab5a1bf283cd81 -================================================================================ - - -================================================================================ -= vendor/github.com/quobyte/api licensed under: = - - -Copyright (c) 2016, Quobyte Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of quobyte-automation nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/quobyte/api/LICENSE beacc5ea3bcda24bdcec545022dbb0b4 -================================================================================ - - -================================================================================ -= vendor/github.com/rancher/go-rancher/client licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -= vendor/github.com/rancher/go-rancher/LICENSE 2ee41112a44fe7014dce33e26468ba93 -================================================================================ - - -================================================================================ -= vendor/github.com/renstrom/dedent licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Peter Renström - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/renstrom/dedent/LICENSE 285693e07a6e1fd790cb3f3b8b5127db -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry/backoff licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry/jitter licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry/strategy licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/robfig/cron licensed under: = - -Copyright (C) 2012 Rob Figueiredo -All Rights Reserved. - -MIT LICENSE - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/robfig/cron/LICENSE d924a63cb54a2a6c4bd28c50b2b0af59 -================================================================================ - - -================================================================================ -= vendor/github.com/rubiojr/go-vhd/vhd licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Sergio Rubio - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/rubiojr/go-vhd/LICENSE 9ce5db55ba47444787183e59733e1977 -================================================================================ - - -================================================================================ -= vendor/github.com/russross/blackfriday licensed under: = - -Blackfriday is distributed under the Simplified BSD License: - -> Copyright © 2011 Russ Ross -> All rights reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions -> are met: -> -> 1. Redistributions of source code must retain the above copyright -> notice, this list of conditions and the following disclaimer. -> -> 2. Redistributions in binary form must reproduce the above -> copyright notice, this list of conditions and the following -> disclaimer in the documentation and/or other materials provided with -> the distribution. -> -> THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -> "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -> LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -> FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -> COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -> INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -> BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -> LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -> CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -> LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -> ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -> POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/russross/blackfriday/LICENSE.txt ecf8a8a60560c35a862a4a545f2db1b3 -================================================================================ - - -================================================================================ -= vendor/github.com/satori/go.uuid licensed under: = - -Copyright (C) 2013-2018 by Maxim Bublis - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/satori/go.uuid/LICENSE ae4ba217c6e20c2d8f48f69966b9121b -================================================================================ - - -================================================================================ -= vendor/github.com/seccomp/libseccomp-golang licensed under: = - -Copyright (c) 2015 Matthew Heon -Copyright (c) 2015 Paul Moore -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/seccomp/libseccomp-golang/LICENSE 343b433e752e8b44a543cdf61f14b628 -================================================================================ - - -================================================================================ -= vendor/github.com/shurcooL/sanitized_anchor_name licensed under: = - -Copyright (c) 2015 Dmitri Shuralyov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/shurcooL/sanitized_anchor_name/LICENSE bee2c3aa5bd0f265ffbd193eb18ca30d -================================================================================ - - -================================================================================ -= vendor/github.com/sigma/go-inotify licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/sigma/go-inotify/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/github.com/sirupsen/logrus licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Simon Eskildsen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/sirupsen/logrus/LICENSE 8dadfef729c08ec4e631c4f6fc5d43a0 -================================================================================ - - -================================================================================ -= vendor/github.com/soheilhy/cmux licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/soheilhy/cmux/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/afero licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -= vendor/github.com/spf13/afero/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/afero/mem licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -= vendor/github.com/spf13/afero/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/afero/sftp licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -= vendor/github.com/spf13/afero/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/cast licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/spf13/cast/LICENSE 67fac7567cbf6ba946e5576d590b1ed4 -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/cobra licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -= vendor/github.com/spf13/cobra/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/cobra/doc licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -= vendor/github.com/spf13/cobra/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/jwalterweatherman licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/spf13/jwalterweatherman/LICENSE 67fac7567cbf6ba946e5576d590b1ed4 -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/pflag licensed under: = - -Copyright (c) 2012 Alex Ogier. All rights reserved. -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/spf13/pflag/LICENSE 1e8b7dc8b906737639131047a590f21d -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/viper licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/spf13/viper/LICENSE 67fac7567cbf6ba946e5576d590b1ed4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2013-2017, go-dockerclient authors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api/netutil licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2013-2017, go-dockerclient authors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api/serror licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2013-2017, go-dockerclient authors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api/types licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2013-2017, go-dockerclient authors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/objx licensed under: = - -objx - by Mat Ryer and Tyler Bunnell - -The MIT License (MIT) - -Copyright (c) 2014 Stretchr, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/stretchr/objx/LICENSE.md 21e79cfe7201b9b64535bfae0895795b -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/testify/assert licensed under: = - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/stretchr/testify/LICENSE 39cd1d751bc25944831de86496e3cf68 -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/testify/mock licensed under: = - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/stretchr/testify/LICENSE 39cd1d751bc25944831de86496e3cf68 -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/testify/require licensed under: = - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/stretchr/testify/LICENSE 39cd1d751bc25944831de86496e3cf68 -================================================================================ - - -================================================================================ -= vendor/github.com/syndtr/gocapability/capability licensed under: = - -Copyright 2013 Suryandaru Triandana -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/syndtr/gocapability/LICENSE a7304f5073e7be4ba7bffabbf9f2bbca -================================================================================ - - -================================================================================ -= vendor/github.com/tmc/grpc-websocket-proxy/wsproxy licensed under: = - -Copyright (C) 2016 Travis Cline - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/tmc/grpc-websocket-proxy/LICENSE 0894f9b225c28f0896b4bab675a2e19a -================================================================================ - - -================================================================================ -= vendor/github.com/ugorji/go/codec licensed under: = - -The MIT License (MIT) - -Copyright (c) 2012-2015 Ugorji Nwoke. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/ugorji/go/LICENSE a03c0693c900925da5789db4e72da142 -================================================================================ - - -================================================================================ -= vendor/github.com/vishvananda/netlink licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Vishvananda Ishaya. - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/vishvananda/netlink/LICENSE 2ade771c7d7211af507864e8dd520529 -================================================================================ - - -================================================================================ -= vendor/github.com/vishvananda/netlink/nl licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Vishvananda Ishaya. - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/vishvananda/netlink/LICENSE 2ade771c7d7211af507864e8dd520529 -================================================================================ - - -================================================================================ -= vendor/github.com/vishvananda/netns licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright 2014 Vishvananda Ishaya. - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/vishvananda/netns/LICENSE 2ade771c7d7211af507864e8dd520529 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/find licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/list licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup/methods licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup/simulator licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup/types licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/nfc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/object licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/pbm licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/pbm/methods licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/pbm/types licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/property licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/session licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/simulator licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/simulator/esx licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/simulator/vpx licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/sts licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/sts/internal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/sts/simulator licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/task licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/internal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/rest licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/simulator licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/tags licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/debug licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/methods licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/mo licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/progress licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/soap licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/types licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/xml licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/photon-controller-go-sdk/photon licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - - -= vendor/github.com/vmware/photon-controller-go-sdk/LICENSE 0de60303c844eac44e45012dac1987de -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/photon-controller-go-sdk/photon/lightwave licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - - -= vendor/github.com/vmware/photon-controller-go-sdk/LICENSE 0de60303c844eac44e45012dac1987de -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/photon-controller-go-sdk/SSPI licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - - -= vendor/github.com/vmware/photon-controller-go-sdk/LICENSE 0de60303c844eac44e45012dac1987de -================================================================================ - - -================================================================================ -= vendor/github.com/xanzy/go-cloudstack/cloudstack licensed under: = - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/github.com/xanzy/go-cloudstack/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/github.com/xiang90/probing licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Xiang Li - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/xiang90/probing/LICENSE 61b57bfd44f7924c8a12cd72d3aa1e93 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/atomic licensed under: = - -Copyright (c) 2016 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/atomic/LICENSE.txt 1caee86519456feda989f8a838102b50 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/multierr licensed under: = - -Copyright (c) 2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/multierr/LICENSE.txt f65b21a547112d1bc7b11b90f9b31997 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/buffer licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/internal/bufferpool licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/internal/color licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/internal/exit licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/zapcore licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/bcrypt licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/blowfish licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/cryptobyte licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/cryptobyte/asn1 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/curve25519 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ed25519 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ed25519/internal/edwards25519 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/internal/chacha20 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/internal/subtle licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/nacl/secretbox licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ocsp licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/pkcs12 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/pkcs12/internal/rc2 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/poly1305 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/salsa20/salsa licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ssh licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ssh/terminal licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/context licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/context/ctxhttp licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/html licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/html/atom licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/http2 licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/http2/hpack licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/idna licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/internal/timeseries licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/lex/httplex licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/proxy licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/trace licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/websocket licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2 licensed under: = - -Copyright (c) 2009 The oauth2 Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/google licensed under: = - -Copyright (c) 2009 The oauth2 Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/internal licensed under: = - -Copyright (c) 2009 The oauth2 Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/jws licensed under: = - -Copyright (c) 2009 The oauth2 Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/jwt licensed under: = - -Copyright (c) 2009 The oauth2 Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/unix licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/windows licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/windows/registry licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/windows/svc licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/cases licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding/internal licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding/internal/identifier licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding/unicode licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/internal licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/internal/tag licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/internal/utf8internal licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/language licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/runes licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/secure/bidirule licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/secure/precis licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/transform licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/unicode/bidi licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/unicode/norm licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/width licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/time/rate licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/time/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/benchmark/parse licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/container/intsets licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/go/ast/astutil licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/go/vcs licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/imports licensed under: = - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/blas licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/blas/blas64 licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/blas/gonum licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/floats licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/encoding licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/encoding/dot licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/ast licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/astx licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/errors licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/lexer licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/parser licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/token licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/internal/ordered licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/internal/set licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/internal/uid licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/simple licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/asm/c128 licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/asm/f32 licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/asm/f64 licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/math32 licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/lapack licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/lapack/gonum licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/lapack/lapack64 licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/mat licensed under: = - -Copyright ©2013 The Gonum Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the gonum project nor the names of its authors and - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/compute/v0.alpha licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/compute/v0.beta licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/compute/v1 licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/container/v1 licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/gensupport licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/googleapi licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/googleapi/internal/uritemplates licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/logging/v2beta1 licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/monitoring/v3 licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/pubsub/v1 licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/tpu/v1 licensed under: = - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/genproto/googleapis/rpc/status licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/genproto/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/balancer licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/balancer/base licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/balancer/roundrobin licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/codes licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/connectivity licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/credentials licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/encoding licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/encoding/proto licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/grpclb/grpc_lb_v1/messages licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/grpclog licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/health licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/health/grpc_health_v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal/backoff licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal/channelz licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal/grpcrand licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/keepalive licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/metadata licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/naming licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/peer licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/resolver licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/resolver/dns licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/resolver/passthrough licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/stats licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/status licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/tap licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/transport licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1 licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1/scanner licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1/token licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1/types licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/inf.v0 licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/inf.v0/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/natefinch/lumberjack.v2 licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Nate Finch - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/gopkg.in/natefinch/lumberjack.v2/LICENSE 574cdb55b81249478f5af5f789e9e29f -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2 licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2/cipher licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2/json licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2/jwt licensed under: = - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/warnings.v0 licensed under: = - -Copyright (c) 2016 Péter Surányi. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/warnings.v0/LICENSE c6775875c9d604beb22447dfae3d7049 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/yaml.v2 licensed under: = - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - -= vendor/gopkg.in/yaml.v2/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/k8s.io/gengo/args licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/aescts/v2 +Version: v2.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/aescts/v2@v2.0.0/LICENSE: Apache License Version 2.0, January 2004 @@ -153415,7 +28830,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -153423,7 +28838,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -153437,13 +28852,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/examples/deepcopy-gen/generators licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/dnsutils/v2 +Version: v2.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/dnsutils/v2@v2.0.0/LICENSE: Apache License Version 2.0, January 2004 @@ -153633,7 +29049,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -153647,13 +29063,51 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/gofork +Version: v1.0.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/gengo/examples/defaulter-gen/generators licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gofork@v1.0.0/LICENSE: +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/goidentity/v6 +Version: v6.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/goidentity/v6@v6.0.1/LICENSE: Apache License Version 2.0, January 2004 @@ -153835,7 +29289,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -153843,7 +29297,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -153857,13 +29311,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/examples/import-boss/generators licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/gokrb5/v8 +Version: v8.4.2 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gokrb5/v8@v8.4.2/LICENSE: Apache License Version 2.0, January 2004 @@ -154045,7 +29500,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -154053,7 +29508,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -154067,13 +29522,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/examples/set-gen/generators licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/rpc/v2 +Version: v2.0.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/rpc/v2@v2.0.3/LICENSE: Apache License Version 2.0, January 2004 @@ -154263,7 +29719,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -154277,433 +29733,554 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/jmespath/go-jmespath +Version: v0.0.0-20180206201540-c2b33e8439af +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/gengo/examples/set-gen/sets licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/jmespath/go-jmespath@v0.0.0-20180206201540-c2b33e8439af/LICENSE: +Copyright 2015 James Saryerwinnie - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +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 - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + http://www.apache.org/licenses/LICENSE-2.0 - 1. Definitions. +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. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +-------------------------------------------------------------------------------- +Dependency : github.com/joho/godotenv +Version: v1.3.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +Contents of probable licence file $GOMODCACHE/github.com/joho/godotenv@v1.3.0/LICENCE: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +Copyright (c) 2013 John Barton - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +MIT License - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +-------------------------------------------------------------------------------- +Dependency : github.com/jpillora/backoff +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +Contents of probable licence file $GOMODCACHE/github.com/jpillora/backoff@v1.0.0/LICENSE: - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +The MIT License (MIT) + +Copyright (c) 2017 Jaime Pillora + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/json-iterator/go +Version: v1.1.10 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/json-iterator/go@v1.1.10/LICENSE: + +MIT License + +Copyright (c) 2016 json-iterator + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/jstemmer/go-junit-report +Version: v0.9.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/jstemmer/go-junit-report@v0.9.1/LICENSE: + +Copyright (c) 2012 Joel Stemmer + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/jtolds/gls +Version: v4.20.0+incompatible +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/jtolds/gls@v4.20.0+incompatible/LICENSE: + +Copyright (c) 2013, Space Monkey, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/karrick/godirwalk +Version: v1.15.6 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/karrick/godirwalk@v1.15.6/LICENSE: + +BSD 2-Clause License + +Copyright (c) 2017, Karrick McDermott +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/klauspost/compress +Version: v1.12.3 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/klauspost/compress@v1.12.3/LICENSE: + +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2019 Klaus Post. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/konsorten/go-windows-terminal-sequences +Version: v1.0.2 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/konsorten/go-windows-terminal-sequences@v1.0.2/LICENSE: + +(The MIT License) + +Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/kr/logfmt +Version: v0.0.0-20140226030751-b84e30acd515 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/kr/logfmt@v0.0.0-20140226030751-b84e30acd515/Readme: + +Go package for parsing (and, eventually, generating) +log lines in the logfmt style. + +See http://godoc.org/github.com/kr/logfmt for format, and other documentation and examples. + +Copyright (C) 2013 Keith Rarick, Blake Mizerany + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/kr/pretty +Version: v0.2.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/kr/pretty@v0.2.1/License: + +Copyright 2012 Keith Rarick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/kr/text +Version: v0.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/kr/text@v0.2.0/License: + +Copyright 2012 Keith Rarick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +-------------------------------------------------------------------------------- +Dependency : github.com/mailru/easyjson +Version: v0.7.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +Contents of probable licence file $GOMODCACHE/github.com/mailru/easyjson@v0.7.1/LICENSE: - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +Copyright (c) 2016 Mail.Ru Group - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +-------------------------------------------------------------------------------- +Dependency : github.com/markbates/pkger +Version: v0.17.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +Contents of probable licence file $GOMODCACHE/github.com/markbates/pkger@v0.17.0/LICENSE: - END OF TERMS AND CONDITIONS +The MIT License (MIT) - APPENDIX: How to apply the Apache License to your work. +Copyright (c) 2019 Mark Bates - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - Copyright 2014 The Kubernetes Authors. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 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 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - 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. +-------------------------------------------------------------------------------- +Dependency : github.com/martini-contrib/render +Version: v0.0.0-20150707142108-ec18f8345a11 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +Contents of probable licence file $GOMODCACHE/github.com/martini-contrib/render@v0.0.0-20150707142108-ec18f8345a11/LICENSE: +The MIT License (MIT) -================================================================================ -= vendor/k8s.io/gengo/generator licensed under: = +Copyright (c) 2013 Jeremy Saenz +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-ieproxy +Version: v0.0.0-20191113090002-7c0f6868bffe +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-ieproxy@v0.0.0-20191113090002-7c0f6868bffe/LICENSE: - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +MIT License - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +Copyright (c) 2014 mattn +Copyright (c) 2017 oliverpool +Copyright (c) 2019 Adele Reed - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-isatty +Version: v0.0.12 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-isatty@v0.0.12/LICENSE: - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +Copyright (c) Yasuhiro MATSUMOTO - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +MIT License (Expat) - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-runewidth +Version: v0.0.9 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-runewidth@v0.0.9/LICENSE: - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +The MIT License (MIT) - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +Copyright (c) 2016 Yasuhiro Matsumoto - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-sqlite3 +Version: v1.9.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-sqlite3@v1.9.0/LICENSE: - Copyright 2014 The Kubernetes Authors. +The MIT License (MIT) - 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 +Copyright (c) 2014 Yasuhiro Matsumoto - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -================================================================================ -= vendor/k8s.io/gengo/namer licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/matttproud/golang_protobuf_extensions +Version: v1.0.2-0.20181231171920-c182affec369 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/matttproud/golang_protobuf_extensions@v1.0.2-0.20181231171920-c182affec369/LICENSE: Apache License Version 2.0, January 2004 @@ -154885,7 +30462,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -154893,7 +30470,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -154907,12 +30484,107 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/mitchellh/go-homedir +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-homedir@v1.1.0/LICENSE: -================================================================================ -= vendor/k8s.io/gengo/parser licensed under: = +The MIT License (MIT) + +Copyright (c) 2013 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/mitchellh/go-testing-interface +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-testing-interface@v1.0.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2016 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/mitchellh/iochan +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/iochan@v1.0.0/LICENSE.md: + +The MIT License (MIT) + +Copyright (c) 2015 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/moby/spdystream +Version: v0.2.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/moby/spdystream@v0.2.0/LICENSE: Apache License @@ -155103,7 +30775,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -155117,13 +30789,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/types licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/modern-go/concurrent +Version: v0.0.0-20180306012644-bacd9c7ef1dd +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/modern-go/concurrent@v0.0.0-20180306012644-bacd9c7ef1dd/LICENSE: Apache License Version 2.0, January 2004 @@ -155313,7 +30986,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -155327,14 +31000,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/modern-go/reflect2 +Version: v1.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/heapster/metrics/api/v1/types licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/modern-go/reflect2@v1.0.1/LICENSE: -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -155514,7 +31189,7 @@ Apache License APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" + boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -155522,7 +31197,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright {yyyy} {name of copyright owner} + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -155536,216 +31211,110 @@ Apache License See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/heapster/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/k8s.io/klog licensed under: = - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. +-------------------------------------------------------------------------------- +Dependency : github.com/morikuni/aec +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -4. Redistribution. +Contents of probable licence file $GOMODCACHE/github.com/morikuni/aec@v1.0.0/LICENSE: -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: +The MIT License (MIT) -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. +Copyright (c) 2016 Taihei Morikuni -5. Submission of Contributions. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -6. Trademarks. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. -7. Disclaimer of Warranty. +-------------------------------------------------------------------------------- +Dependency : github.com/onsi/ginkgo +Version: v1.11.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. +Contents of probable licence file $GOMODCACHE/github.com/onsi/ginkgo@v1.11.0/LICENSE: -8. Limitation of Liability. +Copyright (c) 2013-2014 Onsi Fakhouri -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: -9. Accepting Warranty or Additional Liability. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -END OF TERMS AND CONDITIONS -APPENDIX: How to apply the Apache License to your work +-------------------------------------------------------------------------------- +Dependency : github.com/onsi/gomega +Version: v1.7.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. +Contents of probable licence file $GOMODCACHE/github.com/onsi/gomega@v1.7.0/LICENSE: - Copyright [yyyy] [name of copyright owner] +Copyright (c) 2013-2014 Onsi Fakhouri - 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 +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - http://www.apache.org/licenses/LICENSE-2.0 +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - 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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/k8s.io/klog/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/opencontainers/go-digest +Version: v1.0.0-rc1.0.20190228220655-ac19fd6e7483 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/cmd/openapi-gen licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/opencontainers/go-digest@v1.0.0-rc1.0.20190228220655-ac19fd6e7483/LICENSE: Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -155920,18 +31489,208 @@ third-party archives. END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. + Copyright 2016 Docker, Inc. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + 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 - Copyright [yyyy] [name of copyright owner] + https://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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/opencontainers/image-spec +Version: v1.0.2-0.20190823105129-775207bd45b6 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/opencontainers/image-spec@v1.0.2-0.20190823105129-775207bd45b6/LICENSE: + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2016 The Linux Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -155945,12 +31704,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/opencontainers/runc +Version: v1.0.0-rc9 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/cmd/openapi-gen/args licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runc@v1.0.0-rc9/LICENSE: Apache License @@ -156130,18 +31891,7 @@ third-party archives. END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] + Copyright 2014 Docker, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -156155,12 +31905,31 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/otiai10/mint +Version: v1.3.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/aggregator licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/otiai10/mint@v1.3.1/LICENSE: + +Copyright 2017 otiai10 (Hiromu OCHIAI) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/oxtoacart/bpool +Version: v0.0.0-20150712133111-4e1c5567d7c2 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/oxtoacart/bpool@v0.0.0-20150712133111-4e1c5567d7c2/LICENSE: Apache License @@ -156351,7 +32120,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2014 Percy Wegmann Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -156365,13 +32134,52 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/pierrec/lz4 +Version: v2.6.0+incompatible +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/builder licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/pierrec/lz4@v2.6.0+incompatible/LICENSE: +Copyright (c) 2015, Pierre Curto +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of xxHash nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/prometheus/client_golang +Version: v1.1.1-0.20190913103102-20428fa0bffc +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/prometheus/client_golang@v1.1.1-0.20190913103102-20428fa0bffc/LICENSE: Apache License Version 2.0, January 2004 @@ -156575,13 +32383,22 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/samuel/go-parser +Version: v0.0.0-20130731160455-ca8abbf65d0e +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/common licensed under: = +No licence file provided. + +-------------------------------------------------------------------------------- +Dependency : github.com/sanathkr/go-yaml +Version: v0.0.0-20170819195128-ed9d249f429b +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/sanathkr/go-yaml@v0.0.0-20170819195128-ed9d249f429b/LICENSE: Apache License Version 2.0, January 2004 @@ -156763,7 +32580,7 @@ third-party archives. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -156771,7 +32588,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -156785,13 +32602,365 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/sanathkr/yaml +Version: v1.0.1-0.20170819201035-0056894fa522 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/generators licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/sanathkr/yaml@v1.0.1-0.20170819201035-0056894fa522/LICENSE: + +The MIT License (MIT) +Copyright (c) 2014 Sam Ghods + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/santhosh-tekuri/jsonschema +Version: v1.2.4 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/santhosh-tekuri/jsonschema@v1.2.4/LICENSE: + +Copyright (c) 2017 Santhosh Kumar Tekuri. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +Dependency : github.com/satori/go.uuid +Version: v1.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/satori/go.uuid@v1.2.0/LICENSE: + +Copyright (C) 2013-2018 by Maxim Bublis + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/sergi/go-diff +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/sergi/go-diff@v1.1.0/LICENSE: + +Copyright (c) 2012-2016 The go-diff Authors. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/sirupsen/logrus +Version: v1.4.2 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/sirupsen/logrus@v1.4.2/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014 Simon Eskildsen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/smartystreets/assertions +Version: v0.0.0-20180927180507-b2de0cb4f26d +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/smartystreets/assertions@v0.0.0-20180927180507-b2de0cb4f26d/LICENSE.md: + +Copyright (c) 2016 SmartyStreets, LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +NOTE: Various optional and subordinate components carry their own licensing +requirements and restrictions. Use of those components is subject to the terms +and conditions outlined the respective license of each component. + + +-------------------------------------------------------------------------------- +Dependency : github.com/smartystreets/goconvey +Version: v0.0.0-20190330032615-68dc04aab96a +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/smartystreets/goconvey@v0.0.0-20190330032615-68dc04aab96a/LICENSE.md: + +Copyright (c) 2016 SmartyStreets, LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +NOTE: Various optional and subordinate components carry their own licensing +requirements and restrictions. Use of those components is subject to the terms +and conditions outlined the respective license of each component. + + +-------------------------------------------------------------------------------- +Dependency : github.com/spaolacci/murmur3 +Version: v1.1.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/spaolacci/murmur3@v1.1.0/LICENSE: + +Copyright 2013, Sébastien Paolacci. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the library nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/stretchr/objx +Version: v0.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/stretchr/objx@v0.2.0/LICENSE: + +The MIT License + +Copyright (c) 2014 Stretchr, Inc. +Copyright (c) 2017-2018 objx contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/ugorji/go +Version: v1.1.8 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/ugorji/go@v1.1.8/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2012-2015 Ugorji Nwoke. +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/urso/diag +Version: v0.0.0-20200210123136-21b3cc8eb797 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/urso/diag@v0.0.0-20200210123136-21b3cc8eb797/LICENSE: Apache License Version 2.0, January 2004 @@ -156995,13 +33164,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/generators/rules licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/urso/go-bin +Version: v0.0.0-20180220135811-781c575c9f0e +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/urso/go-bin@v0.0.0-20180220135811-781c575c9f0e/LICENSE: Apache License Version 2.0, January 2004 @@ -157205,13 +33375,22 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/urso/magetools +Version: v0.0.0-20190919040553-290c89e0c230 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/handler licensed under: = +No licence file provided. + +-------------------------------------------------------------------------------- +Dependency : github.com/urso/qcgen +Version: v0.0.0-20180131103024-0b059e7db4f4 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/urso/qcgen@v0.0.0-20180131103024-0b059e7db4f4/LICENSE: Apache License Version 2.0, January 2004 @@ -157415,12 +33594,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/xdg/stringprep +Version: v1.0.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/xdg/stringprep@v1.0.3/LICENSE: Apache License @@ -157598,39 +33779,78 @@ third-party archives. incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +-------------------------------------------------------------------------------- +Dependency : github.com/yuin/gopher-lua +Version: v0.0.0-20170403160031-b402f3114ec7 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +Contents of probable licence file $GOMODCACHE/github.com/yuin/gopher-lua@v0.0.0-20170403160031-b402f3114ec7/LICENSE: - Copyright [yyyy] [name of copyright owner] +The MIT License (MIT) - 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 +Copyright (c) 2015 Yusuke Inuzuka - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/proto licensed under: = +-------------------------------------------------------------------------------- +Dependency : go.elastic.co/fastjson +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/go.elastic.co/fastjson@v1.1.0/LICENSE: + +Copyright 2018 Elasticsearch BV + +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. + +--- + +Copyright (c) 2016 Mail.Ru Group + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : go.opencensus.io +Version: v0.23.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/go.opencensus.io@v0.23.0/LICENSE: Apache License @@ -157835,12 +34055,184 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : go.uber.org/goleak +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/go.uber.org/goleak@v1.0.0/LICENSE: -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/proto/testing licensed under: = +The MIT License (MIT) + +Copyright (c) 2018 Uber Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : go.uber.org/tools +Version: v0.0.0-20190618225709-2cfd321de3ee +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/go.uber.org/tools@v0.0.0-20190618225709-2cfd321de3ee/LICENSE: + +Copyright (c) 2017 Uber Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : golang.org/x/mod +Version: v0.4.2 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/golang.org/x/mod@v0.4.2/LICENSE: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : golang.org/x/term +Version: v0.0.0-20210220032956-6a3ed077a48d +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/golang.org/x/term@v0.0.0-20210220032956-6a3ed077a48d/LICENSE: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : golang.org/x/xerrors +Version: v0.0.0-20200804184101-5ec99f83aff1 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/golang.org/x/xerrors@v0.0.0-20200804184101-5ec99f83aff1/LICENSE: + +Copyright (c) 2019 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : google.golang.org/appengine +Version: v1.6.7 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/google.golang.org/appengine@v1.6.7/LICENSE: Apache License @@ -158045,13 +34437,87 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : gopkg.in/check.v1 +Version: v1.0.0-20201130134442-10cb98267c6c +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/proto/validation licensed under: = +Contents of probable licence file $GOMODCACHE/gopkg.in/check.v1@v1.0.0-20201130134442-10cb98267c6c/LICENSE: + +Gocheck - A rich testing framework for Go + +Copyright (c) 2010-2013 Gustavo Niemeyer + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/fsnotify.v1 +Version: v1.4.7 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gopkg.in/fsnotify.v1@v1.4.7/LICENSE: + +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2012 fsnotify Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/aescts.v1 +Version: v1.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/aescts.v1@v1.0.1/LICENSE: Apache License Version 2.0, January 2004 @@ -158233,7 +34699,7 @@ third-party archives. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -158241,7 +34707,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -158255,13 +34721,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/sets licensed under: = +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/dnsutils.v1 +Version: v1.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/dnsutils.v1@v1.0.1/LICENSE: Apache License Version 2.0, January 2004 @@ -158465,13 +34932,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/k8s.io/utils/clock licensed under: = +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/goidentity.v3 +Version: v3.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/goidentity.v3@v3.0.0/LICENSE: Apache License Version 2.0, January 2004 @@ -158653,7 +35121,7 @@ third-party archives. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -158661,7 +35129,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -158675,13 +35143,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/rpc.v1 +Version: v1.1.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/utils/exec licensed under: = - +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/rpc.v1@v1.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -158879,207 +35348,350 @@ third-party archives. 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. + 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. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/tomb.v1 +Version: v1.0.0-20141024135613-dd632973f1e7 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gopkg.in/tomb.v1@v1.0.0-20141024135613-dd632973f1e7/LICENSE: + +tomb - support for clean goroutine termination in Go. + +Copyright (c) 2010-2011 - Gustavo Niemeyer + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/yaml.v3 +Version: v3.0.0-20210107192922-496545a6307b +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gopkg.in/yaml.v3@v3.0.0-20210107192922-496545a6307b/LICENSE: + + +This project is covered by two different licenses: MIT and Apache. + +#### MIT License #### + +The following files were ported to Go from C files of libyaml, and thus +are still covered by their original MIT license, with the additional +copyright staring in 2011 when the project was ported over: + + apic.go emitterc.go parserc.go readerc.go scannerc.go + writerc.go yamlh.go yamlprivateh.go + +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +### Apache License ### + +All the remaining project files are covered by the Apache license: + +Copyright (c) 2011-2019 Canonical Ltd + +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. + + +-------------------------------------------------------------------------------- +Dependency : gotest.tools/v3 +Version: v3.0.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gotest.tools/v3@v3.0.3/LICENSE: + +Copyright 2018 gotest.tools authors + +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. + + +-------------------------------------------------------------------------------- +Dependency : honnef.co/go/tools +Version: v0.0.1-2020.1.4 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/honnef.co/go/tools@v0.0.1-2020.1.4/LICENSE: + +Copyright (c) 2016 Dominik Honnef + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : k8s.io/klog/v2 +Version: v2.8.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/k8s.io/klog/v2@v2.8.0/LICENSE: -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -================================================================================ -= vendor/k8s.io/utils/exec/testing licensed under: = +1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. - 1. Definitions. +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +2. Grant of Copyright License. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +3. Grant of Patent License. - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +4. Redistribution. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +5. Submission of Contributions. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +6. Trademarks. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +7. Disclaimer of Warranty. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +8. Limitation of Liability. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +9. Accepting Warranty or Additional Liability. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +APPENDIX: How to apply the Apache License to your work - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. Copyright [yyyy] [name of copyright owner] @@ -159087,7 +35699,7 @@ third-party archives. 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 + 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, @@ -159095,12 +35707,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : k8s.io/kube-openapi +Version: v0.0.0-20210305001622-591a79e4bda7 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/utils/pointer licensed under: = +Contents of probable licence file $GOMODCACHE/k8s.io/kube-openapi@v0.0.0-20210305001622-591a79e4bda7/LICENSE: Apache License @@ -159305,93 +35919,6 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/sigs.k8s.io/yaml licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/sigs.k8s.io/yaml/LICENSE 0ceb9ff3b27d3a8cf451ca3785d73c71 -================================================================================ - - -================================================================================ -= vendor/vbom.ml/util/sortorder licensed under: = - -The MIT License (MIT) -Copyright (c) 2015 Frits van Bommel -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/vbom.ml/util/LICENSE 9f7e1d7e8f527330ebb5f4c32e0f3e40 -================================================================================ - - -------------------------------------------------------------------------------- Dependency : k8s.io/utils @@ -159605,117 +36132,6 @@ Contents of probable licence file $GOMODCACHE/k8s.io/utils@v0.0.0-20201110183641 limitations under the License. --------------------------------------------------------------------------------- -Dependency : rsc.io/binaryregexp -Version: v0.2.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/rsc.io/binaryregexp@v0.2.0/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : rsc.io/quote/v3 -Version: v3.1.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/rsc.io/quote/v3@v3.1.0/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : rsc.io/sampler -Version: v1.3.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/rsc.io/sampler@v1.3.0/LICENSE: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -------------------------------------------------------------------------------- Dependency : sigs.k8s.io/structured-merge-diff/v4 Version: v4.1.0 diff --git a/auditbeat/Dockerfile b/auditbeat/Dockerfile index 1cc82d4f9456..50975c2e0a10 100644 --- a/auditbeat/Dockerfile +++ b/auditbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ @@ -7,6 +7,7 @@ RUN \ python3-pip \ python3-venv \ librpm-dev \ + iproute2 \ && rm -rf /var/lib/apt/lists/* RUN pip3 install --upgrade pip==20.1.1 diff --git a/auditbeat/docs/fields.asciidoc b/auditbeat/docs/fields.asciidoc index 2b1ea54d853b..01f57d4932fe 100644 --- a/auditbeat/docs/fields.asciidoc +++ b/auditbeat/docs/fields.asciidoc @@ -17322,16 +17322,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/auditbeat/include/fields.go b/auditbeat/include/fields.go index 78b96b65467d..bf93f4d042c7 100644 --- a/auditbeat/include/fields.go +++ b/auditbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/auditbeat/magefile.go b/auditbeat/magefile.go index bc99856a890a..6b712d925126 100644 --- a/auditbeat/magefile.go +++ b/auditbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/auditbeat/module/auditd/audit_unsupported.go b/auditbeat/module/auditd/audit_unsupported.go index 94761612928d..95aeccbec145 100644 --- a/auditbeat/module/auditd/audit_unsupported.go +++ b/auditbeat/module/auditd/audit_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package auditd diff --git a/auditbeat/module/auditd/golden_files_test.go b/auditbeat/module/auditd/golden_files_test.go index adea47816127..79bf4a85546f 100644 --- a/auditbeat/module/auditd/golden_files_test.go +++ b/auditbeat/module/auditd/golden_files_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package auditd diff --git a/auditbeat/module/file_integrity/eventreader_fsevents.go b/auditbeat/module/file_integrity/eventreader_fsevents.go index 064c46c101f6..f0c2d1aa5652 100644 --- a/auditbeat/module/file_integrity/eventreader_fsevents.go +++ b/auditbeat/module/file_integrity/eventreader_fsevents.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package file_integrity diff --git a/auditbeat/module/file_integrity/eventreader_fsnotify.go b/auditbeat/module/file_integrity/eventreader_fsnotify.go index b80085f4b2dc..252c71d349eb 100644 --- a/auditbeat/module/file_integrity/eventreader_fsnotify.go +++ b/auditbeat/module/file_integrity/eventreader_fsnotify.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || freebsd || openbsd || netbsd || windows // +build linux freebsd openbsd netbsd windows package file_integrity diff --git a/auditbeat/module/file_integrity/eventreader_unsupported.go b/auditbeat/module/file_integrity/eventreader_unsupported.go index 53034833846c..5fa39b2fa2cd 100644 --- a/auditbeat/module/file_integrity/eventreader_unsupported.go +++ b/auditbeat/module/file_integrity/eventreader_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !freebsd && !openbsd && !netbsd && !windows && !darwin // +build !linux,!freebsd,!openbsd,!netbsd,!windows,!darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_bsd.go b/auditbeat/module/file_integrity/fileinfo_bsd.go index 6d9120ad533d..3f7d3c9af936 100644 --- a/auditbeat/module/file_integrity/fileinfo_bsd.go +++ b/auditbeat/module/file_integrity/fileinfo_bsd.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build freebsd || openbsd || netbsd || darwin // +build freebsd openbsd netbsd darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_linux.go b/auditbeat/module/file_integrity/fileinfo_linux.go index b17c6c824aa1..38bf03a824d6 100644 --- a/auditbeat/module/file_integrity/fileinfo_linux.go +++ b/auditbeat/module/file_integrity/fileinfo_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_other_test.go b/auditbeat/module/file_integrity/fileinfo_other_test.go index d4acbb1781bd..ad8fc446127d 100644 --- a/auditbeat/module/file_integrity/fileinfo_other_test.go +++ b/auditbeat/module/file_integrity/fileinfo_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_posix.go b/auditbeat/module/file_integrity/fileinfo_posix.go index 3e6d5e6e868e..a49cf1e5bd6c 100644 --- a/auditbeat/module/file_integrity/fileinfo_posix.go +++ b/auditbeat/module/file_integrity/fileinfo_posix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || freebsd || openbsd || netbsd || darwin // +build linux freebsd openbsd netbsd darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_windows.go b/auditbeat/module/file_integrity/fileinfo_windows.go index 7c3ff0e3fdf0..4c3e8f1f357a 100644 --- a/auditbeat/module/file_integrity/fileinfo_windows.go +++ b/auditbeat/module/file_integrity/fileinfo_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file_integrity diff --git a/auditbeat/module/file_integrity/fileorigin_darwin.go b/auditbeat/module/file_integrity/fileorigin_darwin.go index f6cb2803330f..6efae8bd8564 100644 --- a/auditbeat/module/file_integrity/fileorigin_darwin.go +++ b/auditbeat/module/file_integrity/fileorigin_darwin.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileorigin_other.go b/auditbeat/module/file_integrity/fileorigin_other.go index ad4f062ddaf6..f632b78046fa 100644 --- a/auditbeat/module/file_integrity/fileorigin_other.go +++ b/auditbeat/module/file_integrity/fileorigin_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !darwin // +build !darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileorigin_test.go b/auditbeat/module/file_integrity/fileorigin_test.go index 0ea5d8f6e9f5..6c2576b0419c 100644 --- a/auditbeat/module/file_integrity/fileorigin_test.go +++ b/auditbeat/module/file_integrity/fileorigin_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package file_integrity diff --git a/auditbeat/module/file_integrity/monitor/filetree_test.go b/auditbeat/module/file_integrity/monitor/filetree_test.go index 33afed035566..9b7a6650035b 100644 --- a/auditbeat/module/file_integrity/monitor/filetree_test.go +++ b/auditbeat/module/file_integrity/monitor/filetree_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitor diff --git a/auditbeat/module/file_integrity/monitor/monitor_test.go b/auditbeat/module/file_integrity/monitor/monitor_test.go index 117d25cb1b96..3842948ce0ba 100644 --- a/auditbeat/module/file_integrity/monitor/monitor_test.go +++ b/auditbeat/module/file_integrity/monitor/monitor_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitor diff --git a/dev-tools/cmd/asset/asset.go b/dev-tools/cmd/asset/asset.go index 1696e0781360..e33f1b82aa73 100644 --- a/dev-tools/cmd/asset/asset.go +++ b/dev-tools/cmd/asset/asset.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package main diff --git a/dev-tools/mage/keychain_test.go b/dev-tools/mage/keychain_test.go index 949ca9ac5bf1..1becebf5e873 100644 --- a/dev-tools/mage/keychain_test.go +++ b/dev-tools/mage/keychain_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package mage diff --git a/dev-tools/magefile.go b/dev-tools/magefile.go index 5bdc24790422..7f703ba20775 100644 --- a/dev-tools/magefile.go +++ b/dev-tools/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/dev-tools/packaging/packages.yml b/dev-tools/packaging/packages.yml index 42bb9eba364f..c0dc436f034e 100644 --- a/dev-tools/packaging/packages.yml +++ b/dev-tools/packaging/packages.yml @@ -454,6 +454,7 @@ shared: <<: *agent_docker_spec extra_vars: image_name: '{{.BeatName}}-cloud' + repository: 'docker.elastic.co/beats-ci' # Deb/RPM spec for community beats. - &deb_rpm_spec @@ -1018,9 +1019,9 @@ specs: arch: amd64 types: [docker] spec: + <<: *elastic_docker_spec <<: *agent_docker_spec <<: *agent_docker_cloud_spec - <<: *elastic_docker_spec <<: *elastic_license_for_binaries files: '{{.BeatName}}{{.BinaryExt}}': @@ -1057,9 +1058,9 @@ specs: arch: arm64 types: [docker] spec: + <<: *elastic_docker_spec <<: *agent_docker_arm_spec <<: *agent_docker_cloud_spec - <<: *elastic_docker_spec <<: *elastic_license_for_binaries files: '{{.BeatName}}{{.BinaryExt}}': diff --git a/dev-tools/packaging/preference-pane/magefile.go b/dev-tools/packaging/preference-pane/magefile.go index 77eb9c437dae..4369fc92da61 100644 --- a/dev-tools/packaging/preference-pane/magefile.go +++ b/dev-tools/packaging/preference-pane/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/filebeat/Dockerfile b/filebeat/Dockerfile index 01d3d1455d64..13836b19c51c 100644 --- a/filebeat/Dockerfile +++ b/filebeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/filebeat/Jenkinsfile.yml b/filebeat/Jenkinsfile.yml index 55a296e9fdb0..9c26abb3b081 100644 --- a/filebeat/Jenkinsfile.yml +++ b/filebeat/Jenkinsfile.yml @@ -44,9 +44,9 @@ stages: pythonIntegTest: mage: "mage pythonIntegTest" ## run the ITs only if the changeset affects a specific module. stage: mandatory - module-compat-7.11: - mage: >- ## Run module integration tests under ES 7.11 to ensure ingest pipeline compatibility. - STACK_ENVIRONMENT=7.11 + module-compat-prev-minor: + mage: >- ## Run module integration tests under previous minor of ES to ensure ingest pipeline compatibility. + STACK_ENVIRONMENT=prev-minor TESTING_FILEBEAT_SKIP_DIFF=1 PYTEST_ADDOPTS='-k test_modules' mage pythonIntegTest diff --git a/filebeat/config/config_test.go b/filebeat/config/config_test.go index 7d148a272f8e..24bb0774b1e4 100644 --- a/filebeat/config/config_test.go +++ b/filebeat/config/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package config diff --git a/filebeat/docs/fields.asciidoc b/filebeat/docs/fields.asciidoc index c343709f78fd..8b238b89b6e3 100644 --- a/filebeat/docs/fields.asciidoc +++ b/filebeat/docs/fields.asciidoc @@ -21573,6 +21573,16 @@ type: keyword SA type (remote access or L2L) +type: keyword + +-- + +*`cisco.asa.session_type`*:: ++ +-- +Session type (for example, IPsec or UDP) + + type: keyword -- @@ -85721,16 +85731,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: ++ +-- +Kubernetes namespace name + + +type: keyword + +-- + +*`kubernetes.namespace.uuid`*:: + -- -Kubernetes namespace +Kubernetes namespace uuid type: keyword -- +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- @@ -151364,6 +151405,156 @@ type: keyword The value of the attribute, depending on the type like "url, sha1, email-src". +type: keyword + +-- + +*`threatintel.misp.context.attribute.id`*:: ++ +-- +The ID of the secondary attribute related to the event object. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.type`*:: ++ +-- +The type of the secondary attribute related to the event object. For example email, ipv4, sha1 and such. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.category`*:: ++ +-- +The category of the secondary attribute related to the event object. For example "Network Activity". + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.to_ids`*:: ++ +-- +If the secondary attribute should be automatically synced with an IDS. + + +type: boolean + +-- + +*`threatintel.misp.context.attribute.uuid`*:: ++ +-- +The UUID of the secondary attribute related to the event. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.event_id`*:: ++ +-- +The local event ID of the secondary attribute related to the event. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.distribution`*:: ++ +-- +How the secondary attribute has been distributed, represented by integer numbers. + + +type: long + +-- + +*`threatintel.misp.context.attribute.timestamp`*:: ++ +-- +The timestamp in which the secondary attribute was attached to the event object. + + +type: date + +-- + +*`threatintel.misp.context.attribute.comment`*:: ++ +-- +Comments made to the secondary attribute itself. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.sharing_group_id`*:: ++ +-- +The group ID of the sharing group related to the specific secondary attribute. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.deleted`*:: ++ +-- +If the secondary attribute has been removed from the event object. + + +type: boolean + +-- + +*`threatintel.misp.context.attribute.disable_correlation`*:: ++ +-- +If correlation has been enabled on the secondary attribute related to the event object. + + +type: boolean + +-- + +*`threatintel.misp.context.attribute.object_id`*:: ++ +-- +The ID of the Object in which the secondary attribute is attached. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.object_relation`*:: ++ +-- +The type of relation the secondary attribute has with the event object itself. + + +type: keyword + +-- + +*`threatintel.misp.context.attribute.value`*:: ++ +-- +The value of the attribute, depending on the type like "url, sha1, email-src". + + type: keyword -- diff --git a/filebeat/fileset/compatibility_test.go b/filebeat/fileset/compatibility_test.go index 560af3940ab9..82e584b046fe 100644 --- a/filebeat/fileset/compatibility_test.go +++ b/filebeat/fileset/compatibility_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/fileset/fileset_test.go b/filebeat/fileset/fileset_test.go index 430d71e0db7a..d87f99947e93 100644 --- a/filebeat/fileset/fileset_test.go +++ b/filebeat/fileset/fileset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/fileset/modules_integration_test.go b/filebeat/fileset/modules_integration_test.go index 4d5a79a94266..6b9e86cac84b 100644 --- a/filebeat/fileset/modules_integration_test.go +++ b/filebeat/fileset/modules_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package fileset diff --git a/filebeat/fileset/modules_test.go b/filebeat/fileset/modules_test.go index 7fe2e32aaab4..d023c0aec83b 100644 --- a/filebeat/fileset/modules_test.go +++ b/filebeat/fileset/modules_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/fileset/pipelines_test.go b/filebeat/fileset/pipelines_test.go index f3d9e2d5a07c..c7adf9cf78ad 100644 --- a/filebeat/fileset/pipelines_test.go +++ b/filebeat/fileset/pipelines_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/harvester/util_test.go b/filebeat/harvester/util_test.go index eb2017d8e0f2..859bfe1e1102 100644 --- a/filebeat/harvester/util_test.go +++ b/filebeat/harvester/util_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package harvester diff --git a/filebeat/include/fields.go b/filebeat/include/fields.go index bb2b68651487..2c3ead4f919c 100644 --- a/filebeat/include/fields.go +++ b/filebeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/filebeat/input/container/input_test.go b/filebeat/input/container/input_test.go index 8d898dd594a4..068f7400f981 100644 --- a/filebeat/input/container/input_test.go +++ b/filebeat/input/container/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package container diff --git a/filebeat/input/default-inputs/inputs_other.go b/filebeat/input/default-inputs/inputs_other.go index 13f4abeb7c81..147763e40d1f 100644 --- a/filebeat/input/default-inputs/inputs_other.go +++ b/filebeat/input/default-inputs/inputs_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !linux // +build !windows,!linux package inputs diff --git a/filebeat/input/docker/input_test.go b/filebeat/input/docker/input_test.go index bff4152a7680..8459894aba7f 100644 --- a/filebeat/input/docker/input_test.go +++ b/filebeat/input/docker/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package docker diff --git a/filebeat/input/file/glob_other_test.go b/filebeat/input/file/glob_other_test.go index 2f1080b2dcf8..5502d035d4dc 100644 --- a/filebeat/input/file/glob_other_test.go +++ b/filebeat/input/file/glob_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/filebeat/input/file/glob_windows_test.go b/filebeat/input/file/glob_windows_test.go index 5b3e51891c7c..8ba33bd9ddad 100644 --- a/filebeat/input/file/glob_windows_test.go +++ b/filebeat/input/file/glob_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file diff --git a/filebeat/input/file/identifier_inode_deviceid.go b/filebeat/input/file/identifier_inode_deviceid.go index f5e191744d60..ef2e97bb7865 100644 --- a/filebeat/input/file/identifier_inode_deviceid.go +++ b/filebeat/input/file/identifier_inode_deviceid.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/filebeat/input/file/identifier_inode_deviceid_windows.go b/filebeat/input/file/identifier_inode_deviceid_windows.go index 9fb1152a33c8..7a9a743d2d45 100644 --- a/filebeat/input/file/identifier_inode_deviceid_windows.go +++ b/filebeat/input/file/identifier_inode_deviceid_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file diff --git a/filebeat/input/file/identifier_test.go b/filebeat/input/file/identifier_test.go index f47f4a37fb98..8990f16ea28e 100644 --- a/filebeat/input/file/identifier_test.go +++ b/filebeat/input/file/identifier_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/filebeat/input/file/identifier_test_windows.go b/filebeat/input/file/identifier_test_windows.go index 544dbad2546c..8048454ec066 100644 --- a/filebeat/input/file/identifier_test_windows.go +++ b/filebeat/input/file/identifier_test_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file diff --git a/filebeat/input/file/states_test.go b/filebeat/input/file/states_test.go index 000e4c2082f6..5e1fb3890b56 100644 --- a/filebeat/input/file/states_test.go +++ b/filebeat/input/file/states_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package file diff --git a/filebeat/input/filestream/example_inputs_integration_test.go b/filebeat/input/filestream/example_inputs_integration_test.go index 1973ef9a6d2d..b807fa5ccbb5 100644 --- a/filebeat/input/filestream/example_inputs_integration_test.go +++ b/filebeat/input/filestream/example_inputs_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package filestream diff --git a/filebeat/input/filestream/filestream_test_non_windows.go b/filebeat/input/filestream/filestream_test_non_windows.go index 9c2b33ed3de2..dfc89754f7f5 100644 --- a/filebeat/input/filestream/filestream_test_non_windows.go +++ b/filebeat/input/filestream/filestream_test_non_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/fswatch_test_non_windows.go b/filebeat/input/filestream/fswatch_test_non_windows.go index 8c3cbd03c713..ec8045f7c533 100644 --- a/filebeat/input/filestream/fswatch_test_non_windows.go +++ b/filebeat/input/filestream/fswatch_test_non_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/identifier_inode_deviceid.go b/filebeat/input/filestream/identifier_inode_deviceid.go index 291bc0ad3578..6749afbe9e31 100644 --- a/filebeat/input/filestream/identifier_inode_deviceid.go +++ b/filebeat/input/filestream/identifier_inode_deviceid.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/identifier_inode_deviceid_windows.go b/filebeat/input/filestream/identifier_inode_deviceid_windows.go index 4ee8d8661248..3e40d1d47281 100644 --- a/filebeat/input/filestream/identifier_inode_deviceid_windows.go +++ b/filebeat/input/filestream/identifier_inode_deviceid_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package filestream diff --git a/filebeat/input/filestream/identifier_test_non_windows.go b/filebeat/input/filestream/identifier_test_non_windows.go index cd8c25260dc9..ee6d6688e0db 100644 --- a/filebeat/input/filestream/identifier_test_non_windows.go +++ b/filebeat/input/filestream/identifier_test_non_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/input_integration_test.go b/filebeat/input/filestream/input_integration_test.go index 431c6c6458d1..bcdb7b7f95c9 100644 --- a/filebeat/input/filestream/input_integration_test.go +++ b/filebeat/input/filestream/input_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package filestream diff --git a/filebeat/input/filestream/parsers_integration_test.go b/filebeat/input/filestream/parsers_integration_test.go index f76a227bab68..118524523662 100644 --- a/filebeat/input/filestream/parsers_integration_test.go +++ b/filebeat/input/filestream/parsers_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package filestream diff --git a/filebeat/input/input_test.go b/filebeat/input/input_test.go index 53f3346c1426..3e815e23d3af 100644 --- a/filebeat/input/input_test.go +++ b/filebeat/input/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package input diff --git a/filebeat/input/journald/config.go b/filebeat/input/journald/config.go index ef2cce114350..6704dabfc021 100644 --- a/filebeat/input/journald/config.go +++ b/filebeat/input/journald/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo && withjournald // +build linux,cgo,withjournald package journald diff --git a/filebeat/input/journald/conv.go b/filebeat/input/journald/conv.go index b8c95210c2c4..a9785cf49f65 100644 --- a/filebeat/input/journald/conv.go +++ b/filebeat/input/journald/conv.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo && withjournald // +build linux,cgo,withjournald package journald diff --git a/filebeat/input/journald/input.go b/filebeat/input/journald/input.go index d907aa4b8c02..74bd0983d238 100644 --- a/filebeat/input/journald/input.go +++ b/filebeat/input/journald/input.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo && withjournald // +build linux,cgo,withjournald package journald diff --git a/filebeat/input/journald/input_stub.go b/filebeat/input/journald/input_stub.go index 4eada4569c5a..efe2be45b21b 100644 --- a/filebeat/input/journald/input_stub.go +++ b/filebeat/input/journald/input_stub.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux || !cgo || !withjournald // +build !linux !cgo !withjournald package journald diff --git a/filebeat/input/kafka/input_test.go b/filebeat/input/kafka/input_test.go index a239149cb48e..66e78630200f 100644 --- a/filebeat/input/kafka/input_test.go +++ b/filebeat/input/kafka/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package kafka diff --git a/filebeat/input/kafka/kafka_integration_test.go b/filebeat/input/kafka/kafka_integration_test.go index 2f168eb6daf6..cb3f3526c99b 100644 --- a/filebeat/input/kafka/kafka_integration_test.go +++ b/filebeat/input/kafka/kafka_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package kafka diff --git a/filebeat/input/log/config_test.go b/filebeat/input/log/config_test.go index f8160a830f76..e5c27ad3d776 100644 --- a/filebeat/input/log/config_test.go +++ b/filebeat/input/log/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/log/harvester_test.go b/filebeat/input/log/harvester_test.go index dba61b5d0eac..d95d797c129b 100644 --- a/filebeat/input/log/harvester_test.go +++ b/filebeat/input/log/harvester_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/log/input_other_test.go b/filebeat/input/log/input_other_test.go index 552979af1b9f..9e0839902264 100644 --- a/filebeat/input/log/input_other_test.go +++ b/filebeat/input/log/input_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !integration // +build !windows,!integration package log diff --git a/filebeat/input/log/input_test.go b/filebeat/input/log/input_test.go index 471aaf549f2d..4741d7047d33 100644 --- a/filebeat/input/log/input_test.go +++ b/filebeat/input/log/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/log/prospector_windows_test.go b/filebeat/input/log/prospector_windows_test.go index 2b60fac4c649..b1c1e8d39bd2 100644 --- a/filebeat/input/log/prospector_windows_test.go +++ b/filebeat/input/log/prospector_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/mqtt/mqtt_integration_test.go b/filebeat/input/mqtt/mqtt_integration_test.go index 60b8c595afc2..553bd60706b8 100644 --- a/filebeat/input/mqtt/mqtt_integration_test.go +++ b/filebeat/input/mqtt/mqtt_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package mqtt diff --git a/filebeat/input/redis/input_test.go b/filebeat/input/redis/input_test.go index b480c539efe2..54342e5d9227 100644 --- a/filebeat/input/redis/input_test.go +++ b/filebeat/input/redis/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package redis diff --git a/filebeat/input/stdin/input_test.go b/filebeat/input/stdin/input_test.go index 73183a308879..07efc555f58c 100644 --- a/filebeat/input/stdin/input_test.go +++ b/filebeat/input/stdin/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stdin diff --git a/filebeat/input/udp/input_test.go b/filebeat/input/udp/input_test.go index 8a6f1cad0396..3046b2d62e52 100644 --- a/filebeat/input/udp/input_test.go +++ b/filebeat/input/udp/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package udp diff --git a/filebeat/inputsource/unix/config_test.go b/filebeat/inputsource/unix/config_test.go index c57e654f8127..f92471f75780 100644 --- a/filebeat/inputsource/unix/config_test.go +++ b/filebeat/inputsource/unix/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package unix diff --git a/filebeat/magefile.go b/filebeat/magefile.go index 8e55f6e0d4d2..43804fdb0951 100644 --- a/filebeat/magefile.go +++ b/filebeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/filebeat/registrar/migrate_bench_test.go b/filebeat/registrar/migrate_bench_test.go index 2a1ba7820cb1..b5edd8122bd1 100644 --- a/filebeat/registrar/migrate_bench_test.go +++ b/filebeat/registrar/migrate_bench_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin // +build linux darwin package registrar diff --git a/filebeat/tests/system/test_modules.py b/filebeat/tests/system/test_modules.py index 3702de33c94b..b552560f83cd 100644 --- a/filebeat/tests/system/test_modules.py +++ b/filebeat/tests/system/test_modules.py @@ -274,7 +274,6 @@ def clean_keys(obj): "symantec.endpointprotection", "system.auth", "system.syslog", - "microsoft.defender_atp", "crowdstrike.falcon_endpoint", "crowdstrike.falcon_audit", "zoom.webhook", diff --git a/generator/_templates/beat/{beat}/config/config_test.go b/generator/_templates/beat/{beat}/config/config_test.go index d177de3ab82b..8abe696e7e07 100644 --- a/generator/_templates/beat/{beat}/config/config_test.go +++ b/generator/_templates/beat/{beat}/config/config_test.go @@ -1,3 +1,4 @@ +//go:build !integration // +build !integration package config diff --git a/generator/_templates/beat/{beat}/magefile.go b/generator/_templates/beat/{beat}/magefile.go index b8dd789f4188..001e33ee2553 100644 --- a/generator/_templates/beat/{beat}/magefile.go +++ b/generator/_templates/beat/{beat}/magefile.go @@ -1,3 +1,4 @@ +//go:build mage // +build mage package main diff --git a/generator/_templates/beat/{beat}/tools/tools.go b/generator/_templates/beat/{beat}/tools/tools.go index 9b553081ae36..9c1319194d02 100644 --- a/generator/_templates/beat/{beat}/tools/tools.go +++ b/generator/_templates/beat/{beat}/tools/tools.go @@ -1,3 +1,4 @@ +//go:build tools // +build tools // This package contains the tool dependencies of the project. diff --git a/generator/_templates/metricbeat/{beat}/magefile.go b/generator/_templates/metricbeat/{beat}/magefile.go index c05ac7623b31..701f4b2a4783 100644 --- a/generator/_templates/metricbeat/{beat}/magefile.go +++ b/generator/_templates/metricbeat/{beat}/magefile.go @@ -1,3 +1,4 @@ +//go:build mage // +build mage package main diff --git a/generator/_templates/metricbeat/{beat}/tools/tools.go b/generator/_templates/metricbeat/{beat}/tools/tools.go index 9b553081ae36..9c1319194d02 100644 --- a/generator/_templates/metricbeat/{beat}/tools/tools.go +++ b/generator/_templates/metricbeat/{beat}/tools/tools.go @@ -1,3 +1,4 @@ +//go:build tools // +build tools // This package contains the tool dependencies of the project. diff --git a/go.mod b/go.mod index 9c471a982742..439b9d09cf27 100644 --- a/go.mod +++ b/go.mod @@ -1,12 +1,11 @@ module github.com/elastic/beats/v7 -go 1.16 +go 1.17 require ( cloud.google.com/go v0.83.0 cloud.google.com/go/bigquery v1.8.0 cloud.google.com/go/pubsub v1.3.1 - cloud.google.com/go/storage v1.10.0 code.cloudfoundry.org/go-diodes v0.0.0-20190809170250-f77fb823c7ee // indirect code.cloudfoundry.org/go-loggregator v7.4.0+incompatible code.cloudfoundry.org/rfc5424 v0.0.0-20180905210152-236a6d29298a // indirect @@ -30,7 +29,7 @@ require ( github.com/antlr/antlr4 v0.0.0-20200820155224-be881fa6b91d github.com/apoydence/eachers v0.0.0-20181020210610-23942921fe77 // indirect github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 - github.com/aws/aws-lambda-go v1.6.0 + github.com/aws/aws-lambda-go v1.13.3 github.com/aws/aws-sdk-go-v2 v0.24.0 github.com/awslabs/goformation/v4 v4.1.0 github.com/blakesmith/ar v0.0.0-20150311145944-8bd4349a67f2 @@ -168,13 +167,13 @@ require ( go.uber.org/zap v1.14.0 golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 - golang.org/x/net v0.0.0-20210614182718-04defd469f4e + golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c golang.org/x/sync v0.0.0-20210220032951-036812b2e83c - golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c + golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e golang.org/x/text v0.3.6 golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba - golang.org/x/tools v0.1.2 + golang.org/x/tools v0.1.6 google.golang.org/api v0.47.0 google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c google.golang.org/grpc v1.38.0 @@ -195,6 +194,99 @@ require ( k8s.io/client-go v0.21.1 ) +require ( + code.cloudfoundry.org/gofileutils v0.0.0-20170111115228-4d0c80011a0f // indirect + github.com/Azure/azure-amqp-common-go/v3 v3.0.0 // indirect + github.com/Azure/azure-pipeline-go v0.2.1 // indirect + github.com/Azure/go-amqp v0.12.6 // indirect + github.com/Azure/go-autorest v14.2.0+incompatible // indirect + github.com/Azure/go-autorest/autorest/azure/cli v0.3.1 // indirect + github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect + github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect + github.com/Azure/go-autorest/logger v0.2.1 // indirect + github.com/Azure/go-autorest/tracing v0.6.0 // indirect + github.com/BurntSushi/toml v0.3.1 // indirect + github.com/Microsoft/hcsshim v0.8.7 // indirect + github.com/apache/thrift v0.13.1-0.20200603211036-eac4d0c79a5f // indirect + github.com/armon/go-radix v1.0.0 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash v1.1.0 // indirect + github.com/containerd/containerd v1.3.3 // indirect + github.com/containerd/continuity v0.0.0-20200107194136-26c1120b8d41 // indirect + github.com/cyphar/filepath-securejoin v0.2.2 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/dgraph-io/ristretto v0.1.0 // indirect + github.com/dimchansky/utfbom v1.1.0 // indirect + github.com/docker/distribution v2.7.1+incompatible // indirect + github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect + github.com/eapache/queue v1.1.0 // indirect + github.com/evanphx/json-patch v4.9.0+incompatible // indirect + github.com/go-logr/logr v0.4.0 // indirect + github.com/gobuffalo/here v0.6.0 // indirect + github.com/godbus/dbus/v5 v5.0.3 // indirect + github.com/golang-jwt/jwt/v4 v4.0.0 // indirect + github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect + github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect + github.com/google/gofuzz v1.1.0 // indirect + github.com/google/licenseclassifier v0.0.0-20200402202327-879cb1424de0 // indirect + github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect + github.com/googleapis/gax-go/v2 v2.0.5 // indirect + github.com/googleapis/gnostic v0.4.1 // indirect + github.com/gorilla/websocket v1.4.2 // indirect + github.com/hashicorp/cronexpr v1.1.0 // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.1 // indirect + github.com/hashicorp/go-rootcerts v1.0.2 // indirect + github.com/hashicorp/go-uuid v1.0.2 // indirect + github.com/hashicorp/go-version v1.0.0 // indirect + github.com/imdario/mergo v0.3.6 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/jcmturner/aescts/v2 v2.0.0 // indirect + github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect + github.com/jcmturner/gofork v1.0.0 // indirect + github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect + github.com/jcmturner/rpc/v2 v2.0.3 // indirect + github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect + github.com/json-iterator/go v1.1.10 // indirect + github.com/jstemmer/go-junit-report v0.9.1 // indirect + github.com/karrick/godirwalk v1.15.6 // indirect + github.com/klauspost/compress v1.12.3 // indirect + github.com/markbates/pkger v0.17.0 // indirect + github.com/mattn/go-isatty v0.0.12 // indirect + github.com/mattn/go-runewidth v0.0.9 // indirect + github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/mitchellh/iochan v1.0.0 // indirect + github.com/moby/spdystream v0.2.0 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.1 // indirect + github.com/opencontainers/runc v1.0.0-rc9 // indirect + github.com/pierrec/lz4 v2.6.0+incompatible // indirect + github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b // indirect + github.com/santhosh-tekuri/jsonschema v1.2.4 // indirect + github.com/sergi/go-diff v1.1.0 // indirect + github.com/sirupsen/logrus v1.4.2 // indirect + github.com/stretchr/objx v0.2.0 // indirect + github.com/urso/diag v0.0.0-20200210123136-21b3cc8eb797 // indirect + github.com/urso/go-bin v0.0.0-20180220135811-781c575c9f0e // indirect + github.com/urso/magetools v0.0.0-20190919040553-290c89e0c230 // indirect + github.com/xdg/stringprep v1.0.3 // indirect + go.elastic.co/fastjson v1.1.0 // indirect + go.opencensus.io v0.23.0 // indirect + go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect + golang.org/x/mod v0.4.2 // indirect + golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect + golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + google.golang.org/appengine v1.6.7 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect + honnef.co/go/tools v0.0.1-2020.1.4 // indirect + k8s.io/klog/v2 v2.8.0 // indirect + k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect + k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.1.0 // indirect + sigs.k8s.io/yaml v1.2.0 // indirect +) + replace ( github.com/Microsoft/go-winio => github.com/bi-zone/go-winio v0.4.15 github.com/Shopify/sarama => github.com/elastic/sarama v1.19.1-0.20210823122811-11c3ef800752 @@ -209,5 +301,4 @@ replace ( github.com/google/gopacket => github.com/adriansr/gopacket v1.1.18-0.20200327165309-dd62abfa8a41 github.com/insomniacslk/dhcp => github.com/elastic/dhcp v0.0.0-20200227161230-57ec251c7eb3 // indirect github.com/tonistiigi/fifo => github.com/containerd/fifo v0.0.0-20190816180239-bda0ff6ed73c - golang.org/x/tools => golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0 // release 1.14 ) diff --git a/go.sum b/go.sum index b56560c5a4e9..25338202f7c5 100644 --- a/go.sum +++ b/go.sum @@ -153,8 +153,8 @@ github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgI github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-lambda-go v1.6.0 h1:T+u/g79zPKw1oJM7xYhvpq7i4Sjc0iVsXZUaqRVVSOg= -github.com/aws/aws-lambda-go v1.6.0/go.mod h1:zUsUQhAUjYzR8AuduJPCfhBuKWUaDbQiPOG+ouzmE1A= +github.com/aws/aws-lambda-go v1.13.3 h1:SuCy7H3NLyp+1Mrfp+m80jcbi9KYWAs9/BXwppwRDzY= +github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-sdk-go-v2 v0.24.0 h1:R0lL0krk9EyTI1vmO1ycoeceGZotSzCKO51LbPGq3rU= github.com/aws/aws-sdk-go-v2 v0.24.0/go.mod h1:2LhT7UgHOXK3UXONKI5OMgIyoQL6zTAw/jwIeX6yqzw= github.com/awslabs/goformation/v3 v3.1.0/go.mod h1:hQ5RXo3GNm2laHWKizDzU5DsDy+yNcenSca2UxN0850= @@ -219,6 +219,7 @@ github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+ github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea h1:n2Ltr3SrfQlf/9nOna1DoGKxLx3qTSI8Ttl6Xrqp6mw= github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/cucumber/godog v0.8.1 h1:lVb+X41I4YDreE+ibZ50bdXmySxgRviYFgKY6Aw4XE8= github.com/cucumber/godog v0.8.1/go.mod h1:vSh3r/lM+psC1BPXvdkSEuNjmXfpVqrMGYAElF6hxnA= @@ -740,6 +741,7 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqn github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e h1:hUGyBE/4CXRPThr4b6kt+f1CN90no4Fs5CNrYOKYSIg= github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e/go.mod h1:Sb6li54lXV0yYEjI4wX8cucdQ9gqUJV3+Ngg3l9g30I= github.com/samuel/go-thrift v0.0.0-20140522043831-2187045faa54 h1:jbchLJWyhKcmOjkbC4zDvT/n5EEd7g6hnnF760rEyRA= @@ -760,6 +762,7 @@ github.com/shirou/gopsutil v3.20.12+incompatible h1:6VEGkOXP/eP4o2Ilk8cSsX0PhOEf github.com/shirou/gopsutil v3.20.12+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= @@ -809,6 +812,7 @@ github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljT github.com/ugorji/go/codec v1.1.8 h1:4dryPvxMP9OtkjIbuNeK2nb27M38XMHLGlfNSNph/5s= github.com/ugorji/go/codec v1.1.8/go.mod h1:X00B19HDtwvKbQY2DcYjvZxKQp8mzrJoQ6EgoIY/D2E= github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urso/diag v0.0.0-20200210123136-21b3cc8eb797 h1:OHNw/6pXODJAB32NujjdQO/KIYQ3KAbHQfCzH81XdCs= github.com/urso/diag v0.0.0-20200210123136-21b3cc8eb797/go.mod h1:pNWFTeQ+V1OYT/TzWpnWb6eQBdoXpdx+H+lrH97/Oyo= github.com/urso/go-bin v0.0.0-20180220135811-781c575c9f0e h1:NiofbjIUI5gR+ybDsGSVH1fWyjSeDYiYVJHT1+kcsak= @@ -832,6 +836,12 @@ github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1: github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= github.com/xeipuuv/gojsonschema v0.0.0-20181112162635-ac52e6811b56/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7 h1:0gYLpmzecnaDCoeWxSfEJ7J1b6B/67+NV++4HKQXx+Y= github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7/go.mod h1:aEV29XrmTYFr3CiRxZeGHpkvbwq+prZduBqMaascyCU= go.elastic.co/apm v1.7.2/go.mod h1:tCw6CkOJgkWnzEthFN9HUP1uL3Gjc/Ur6m7gRPLaoH0= @@ -955,6 +965,7 @@ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= @@ -965,9 +976,11 @@ golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210224082022-3d97a244fca7/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210614182718-04defd469f4e h1:XpT3nA5TvE525Ne3hInMh6+GETgn27Zfm9dxsThnX2Q= golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d h1:20cMwl2fHAzkJMEA+8J4JgqBQcQGzbisXo31MIeenXI= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190130055435-99b60b757ec1/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1049,18 +1062,21 @@ golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c h1:F1jZWGFhYfh0Ci55sIpILtKKK8p3i2/krTr0H1rg74I= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e h1:WUoyKPm6nCo1BnNUvPGnFG3T5DUVem42yDJZZ4CNxMA= +golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d h1:SZxvLBoTP5yHO3Frd4z4vrF+DBX9vMVanchswa69toE= @@ -1079,8 +1095,69 @@ golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxb golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba h1:O8mE0/t419eoIwhTFpKVkHiTs/Igowgfkj25AcZrtiE= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0 h1:6txNFSnY+tteYoO+hf01EpdYcYZiurdC9MDIrcUzEu4= -golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200216192241-b320d3a0f5a2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200509030707-2212a7e161a5/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.6 h1:SIasE1FVIQOWz2GEAHFOmoW7xchJcqlucjSULTL0Ag4= +golang.org/x/tools v0.1.6/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/heartbeat/Dockerfile b/heartbeat/Dockerfile index 12a8db296789..1d2bab491cc4 100644 --- a/heartbeat/Dockerfile +++ b/heartbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/heartbeat/docs/fields.asciidoc b/heartbeat/docs/fields.asciidoc index fddd1b41649d..467a0eb8e8e0 100644 --- a/heartbeat/docs/fields.asciidoc +++ b/heartbeat/docs/fields.asciidoc @@ -14904,16 +14904,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/heartbeat/include/fields.go b/heartbeat/include/fields.go index 7836f5c36d56..81aae07fb388 100644 --- a/heartbeat/include/fields.go +++ b/heartbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/journalbeat/Dockerfile b/journalbeat/Dockerfile index 0cb48807b165..354718af0814 100644 --- a/journalbeat/Dockerfile +++ b/journalbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/journalbeat/checkpoint/checkpoint_test.go b/journalbeat/checkpoint/checkpoint_test.go index 75d609516649..6f6aa780d9a3 100644 --- a/journalbeat/checkpoint/checkpoint_test.go +++ b/journalbeat/checkpoint/checkpoint_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package checkpoint diff --git a/journalbeat/checkpoint/file_unix.go b/journalbeat/checkpoint/file_unix.go index ee3201d61005..248b5301955d 100644 --- a/journalbeat/checkpoint/file_unix.go +++ b/journalbeat/checkpoint/file_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package checkpoint diff --git a/journalbeat/cmd/instance/metrics.go b/journalbeat/cmd/instance/metrics.go index 7b569da8dd26..3d75426c809c 100644 --- a/journalbeat/cmd/instance/metrics.go +++ b/journalbeat/cmd/instance/metrics.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package instance diff --git a/journalbeat/cmd/instance/metrics_other.go b/journalbeat/cmd/instance/metrics_other.go index 16c5b639cb81..990d5f06b09f 100644 --- a/journalbeat/cmd/instance/metrics_other.go +++ b/journalbeat/cmd/instance/metrics_other.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !linux !cgo +//go:build !linux || !cgo +// +build !linux !cgo package instance diff --git a/journalbeat/docs/fields.asciidoc b/journalbeat/docs/fields.asciidoc index 91c9f4f93c16..4b1e74e67e2b 100644 --- a/journalbeat/docs/fields.asciidoc +++ b/journalbeat/docs/fields.asciidoc @@ -15249,16 +15249,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/journalbeat/include/fields.go b/journalbeat/include/fields.go index 560bdab513ed..d6795ac304a5 100644 --- a/journalbeat/include/fields.go +++ b/journalbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/journalbeat/magefile.go b/journalbeat/magefile.go index 826e19ff138b..0ba6de46d4b1 100644 --- a/journalbeat/magefile.go +++ b/journalbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/journalbeat/pkg/journalfield/conv_test.go b/journalbeat/pkg/journalfield/conv_test.go index 6625d8e1dc10..9d0be66bbe56 100644 --- a/journalbeat/pkg/journalfield/conv_test.go +++ b/journalbeat/pkg/journalfield/conv_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package journalfield diff --git a/journalbeat/pkg/journalfield/default.go b/journalbeat/pkg/journalfield/default.go index 0ec1be4af6b4..7573eb4156df 100644 --- a/journalbeat/pkg/journalfield/default.go +++ b/journalbeat/pkg/journalfield/default.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package journalfield diff --git a/journalbeat/pkg/journalfield/default_other.go b/journalbeat/pkg/journalfield/default_other.go index 5e25ccbf1340..22085a0e3d37 100644 --- a/journalbeat/pkg/journalfield/default_other.go +++ b/journalbeat/pkg/journalfield/default_other.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !linux !cgo +//go:build !linux || !cgo +// +build !linux !cgo package journalfield diff --git a/journalbeat/pkg/journalfield/matcher_test.go b/journalbeat/pkg/journalfield/matcher_test.go index 9ce8c63c8a44..82832f3297a7 100644 --- a/journalbeat/pkg/journalfield/matcher_test.go +++ b/journalbeat/pkg/journalfield/matcher_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package journalfield diff --git a/journalbeat/pkg/journalread/reader.go b/journalbeat/pkg/journalread/reader.go index 440eeb51de3e..ab359f141f4f 100644 --- a/journalbeat/pkg/journalread/reader.go +++ b/journalbeat/pkg/journalread/reader.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo // +build linux,cgo package journalread diff --git a/journalbeat/reader/fields.go b/journalbeat/reader/fields.go index 0b6efc3cdc8b..7076a92a19de 100644 --- a/journalbeat/reader/fields.go +++ b/journalbeat/reader/fields.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package reader diff --git a/journalbeat/reader/journal.go b/journalbeat/reader/journal.go index 10aa382a1421..93fc39633486 100644 --- a/journalbeat/reader/journal.go +++ b/journalbeat/reader/journal.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package reader diff --git a/journalbeat/reader/journal_other.go b/journalbeat/reader/journal_other.go index 26f0a7b5f1fe..a44d1a07db0c 100644 --- a/journalbeat/reader/journal_other.go +++ b/journalbeat/reader/journal_other.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !linux !cgo +//go:build !linux || !cgo +// +build !linux !cgo package reader diff --git a/libbeat/Dockerfile b/libbeat/Dockerfile index 637aca6036cb..fe9b4e01a2c3 100644 --- a/libbeat/Dockerfile +++ b/libbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/libbeat/api/make_listener_posix.go b/libbeat/api/make_listener_posix.go index 422a1c542911..17b87135fb94 100644 --- a/libbeat/api/make_listener_posix.go +++ b/libbeat/api/make_listener_posix.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !windows +//go:build !windows +// +build !windows package api diff --git a/libbeat/api/make_listener_windows.go b/libbeat/api/make_listener_windows.go index adc9dff4efd5..c23f2ab29e64 100644 --- a/libbeat/api/make_listener_windows.go +++ b/libbeat/api/make_listener_windows.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package api diff --git a/libbeat/api/npipe/listener_windows.go b/libbeat/api/npipe/listener_windows.go index 415079ef3836..1b0c6f77befd 100644 --- a/libbeat/api/npipe/listener_windows.go +++ b/libbeat/api/npipe/listener_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package npipe diff --git a/libbeat/api/npipe/listener_windows_test.go b/libbeat/api/npipe/listener_windows_test.go index 486bb832d340..5c24d8e86b1b 100644 --- a/libbeat/api/npipe/listener_windows_test.go +++ b/libbeat/api/npipe/listener_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package npipe diff --git a/libbeat/api/npipe/listerner_posix.go b/libbeat/api/npipe/listerner_posix.go index ee93e1c23a06..3506c308b8ee 100644 --- a/libbeat/api/npipe/listerner_posix.go +++ b/libbeat/api/npipe/listerner_posix.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !windows +//go:build !windows +// +build !windows package npipe diff --git a/libbeat/api/server_windows_test.go b/libbeat/api/server_windows_test.go index 51efc0f1f819..6668ba38a087 100644 --- a/libbeat/api/server_windows_test.go +++ b/libbeat/api/server_windows_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package api diff --git a/libbeat/autodiscover/providers/docker/config.go b/libbeat/autodiscover/providers/docker/config.go index 0af6c2791dd8..1fb66cef2b31 100644 --- a/libbeat/autodiscover/providers/docker/config.go +++ b/libbeat/autodiscover/providers/docker/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/autodiscover/providers/docker/docker.go b/libbeat/autodiscover/providers/docker/docker.go index 0af879f9763b..00ff4919f1e6 100644 --- a/libbeat/autodiscover/providers/docker/docker.go +++ b/libbeat/autodiscover/providers/docker/docker.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/autodiscover/providers/docker/docker_integration_test.go b/libbeat/autodiscover/providers/docker/docker_integration_test.go index 898f3cd254cb..28e9d98c0f31 100644 --- a/libbeat/autodiscover/providers/docker/docker_integration_test.go +++ b/libbeat/autodiscover/providers/docker/docker_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package docker diff --git a/libbeat/autodiscover/providers/kubernetes/config.go b/libbeat/autodiscover/providers/kubernetes/config.go index 82e115527aaa..5d013aca4acf 100644 --- a/libbeat/autodiscover/providers/kubernetes/config.go +++ b/libbeat/autodiscover/providers/kubernetes/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package kubernetes diff --git a/libbeat/autodiscover/providers/kubernetes/kubernetes.go b/libbeat/autodiscover/providers/kubernetes/kubernetes.go index e09c457d340f..1c885b565116 100644 --- a/libbeat/autodiscover/providers/kubernetes/kubernetes.go +++ b/libbeat/autodiscover/providers/kubernetes/kubernetes.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package kubernetes diff --git a/libbeat/autodiscover/providers/kubernetes/pod.go b/libbeat/autodiscover/providers/kubernetes/pod.go index de63c3925e2c..65b64ccdc484 100644 --- a/libbeat/autodiscover/providers/kubernetes/pod.go +++ b/libbeat/autodiscover/providers/kubernetes/pod.go @@ -186,7 +186,8 @@ func (p *pod) GenerateHints(event bus.Event) bus.Event { } // Look at all the namespace level default annotations and do a merge with priority going to the pod annotations. - if rawNsAnn, ok := kubeMeta["namespace_annotations"]; ok { + rawNsAnn, err := kubeMeta.GetValue("namespace.annotations") + if err == nil { namespaceAnnotations, _ := rawNsAnn.(common.MapStr) if len(namespaceAnnotations) != 0 { annotations.DeepUpdateNoOverwrite(namespaceAnnotations) @@ -381,7 +382,7 @@ func (p *pod) containerPodEvents(flag string, pod *kubernetes.Pod, c *containerI "runtime": c.runtime, } if len(namespaceAnnotations) != 0 { - kubemeta["namespace_annotations"] = namespaceAnnotations + kubemeta.Put("namespace.annotations", namespaceAnnotations) } ports := c.spec.Ports @@ -433,7 +434,7 @@ func (p *pod) podEvent(flag string, pod *kubernetes.Pod, ports common.MapStr, in kubemeta = kubemeta.Clone() kubemeta["annotations"] = annotations if len(namespaceAnnotations) != 0 { - kubemeta["namespace_annotations"] = namespaceAnnotations + kubemeta.Put("namespace.annotations", namespaceAnnotations) } // Don't set a port on the event diff --git a/libbeat/autodiscover/providers/kubernetes/pod_test.go b/libbeat/autodiscover/providers/kubernetes/pod_test.go index 3c89a5acf20c..4a7097d48022 100644 --- a/libbeat/autodiscover/providers/kubernetes/pod_test.go +++ b/libbeat/autodiscover/providers/kubernetes/pod_test.go @@ -162,17 +162,19 @@ func TestGenerateHints(t *testing.T) { "co.elastic.logs/json.keys_under_root": "true", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + }), + }, }, }, result: bus.Event{ @@ -182,17 +184,19 @@ func TestGenerateHints(t *testing.T) { "co.elastic.logs/json.keys_under_root": "true", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - "co.elastic.metrics/module": "prometheus", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + "co.elastic.metrics/module": "prometheus", + }), + }, }, "hints": common.MapStr{ "logs": common.MapStr{ @@ -227,12 +231,14 @@ func TestGenerateHints(t *testing.T) { "co.elastic.metrics.foobar/period": "15s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - "co.elastic.metrics.foobar/period": "25s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + "co.elastic.metrics.foobar/period": "25s", + }), + }, "container": common.MapStr{ "name": "foobar", "id": "abc", @@ -248,17 +254,19 @@ func TestGenerateHints(t *testing.T) { "co.elastic.metrics.foobar/period": "15s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - "co.elastic.metrics.foobar/period": "25s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + "co.elastic.metrics.foobar/period": "25s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -279,32 +287,36 @@ func TestGenerateHints(t *testing.T) { { event: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + }), + }, }, }, result: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -407,12 +419,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -445,12 +461,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -535,12 +555,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -573,12 +597,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -618,12 +646,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -704,12 +736,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -740,12 +776,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -783,12 +823,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -916,12 +960,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -950,12 +998,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1019,12 +1071,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1055,12 +1111,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1141,12 +1201,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1177,12 +1241,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1220,12 +1288,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1320,12 +1392,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1358,12 +1434,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1401,12 +1481,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1477,12 +1561,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1515,12 +1603,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1593,12 +1685,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1631,12 +1727,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1740,12 +1840,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1779,12 +1883,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1825,12 +1933,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1871,12 +1983,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", diff --git a/libbeat/autodiscover/providers/kubernetes/service.go b/libbeat/autodiscover/providers/kubernetes/service.go index 3def44028bf8..d8e800fe85e5 100644 --- a/libbeat/autodiscover/providers/kubernetes/service.go +++ b/libbeat/autodiscover/providers/kubernetes/service.go @@ -137,7 +137,8 @@ func (s *service) GenerateHints(event bus.Event) bus.Event { } // Look at all the namespace level default annotations and do a merge with priority going to the pod annotations. - if rawNsAnn, ok := kubeMeta["namespace_annotations"]; ok { + rawNsAnn, err := kubeMeta.GetValue("namespace.annotations") + if err == nil { nsAnn, _ := rawNsAnn.(common.MapStr) if len(nsAnn) != 0 { annotations.DeepUpdateNoOverwrite(nsAnn) @@ -211,7 +212,7 @@ func (s *service) emit(svc *kubernetes.Service, flag string) { for k, v := range namespace.GetAnnotations() { safemapstr.Put(nsAnns, k, v) } - kubemeta["namespace_annotations"] = nsAnns + kubemeta.Put("namespace.annotations", nsAnns) } } } diff --git a/libbeat/autodiscover/providers/kubernetes/service_test.go b/libbeat/autodiscover/providers/kubernetes/service_test.go index c9ee77646326..1a8dd4696c61 100644 --- a/libbeat/autodiscover/providers/kubernetes/service_test.go +++ b/libbeat/autodiscover/providers/kubernetes/service_test.go @@ -108,13 +108,15 @@ func TestGenerateHints_Service(t *testing.T) { "co.elastic.metrics/module": "prometheus", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/period": "10s", - }), "service": common.MapStr{ "name": "foobar", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/period": "10s", + }), + }, }, }, result: bus.Event{ @@ -126,10 +128,12 @@ func TestGenerateHints_Service(t *testing.T) { "service": common.MapStr{ "name": "foobar", }, - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/period": "10s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/period": "10s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -150,11 +154,13 @@ func TestGenerateHints_Service(t *testing.T) { "co.elastic.metrics/period": "10s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + }), + }, "service": common.MapStr{ "name": "foobar", }, @@ -167,11 +173,13 @@ func TestGenerateHints_Service(t *testing.T) { "co.elastic.metrics/period": "10s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + }), + }, "service": common.MapStr{ "name": "foobar", }, @@ -190,26 +198,30 @@ func TestGenerateHints_Service(t *testing.T) { { event: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - }), "service": common.MapStr{ "name": "foobar", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + }), + }, }, }, result: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - }), "service": common.MapStr{ "name": "foobar", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -286,12 +298,16 @@ func TestEmitEvent_Service(t *testing.T) { "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "service": common.MapStr{ "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -373,12 +389,16 @@ func TestEmitEvent_Service(t *testing.T) { "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "service": common.MapStr{ "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", diff --git a/libbeat/cfgfile/cfgfile_test.go b/libbeat/cfgfile/cfgfile_test.go index a5e0900f2901..81f530b8956e 100644 --- a/libbeat/cfgfile/cfgfile_test.go +++ b/libbeat/cfgfile/cfgfile_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package cfgfile diff --git a/libbeat/cfgfile/reload_test.go b/libbeat/cfgfile/reload_test.go index d52b4f293ff5..d98f5ddc1b97 100644 --- a/libbeat/cfgfile/reload_test.go +++ b/libbeat/cfgfile/reload_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package cfgfile diff --git a/libbeat/cmd/instance/beat_test.go b/libbeat/cmd/instance/beat_test.go index e05b4ddb87ae..ea23e2dd0aa0 100644 --- a/libbeat/cmd/instance/beat_test.go +++ b/libbeat/cmd/instance/beat_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package instance diff --git a/libbeat/cmd/instance/imports_docker.go b/libbeat/cmd/instance/imports_docker.go index 12d379714ed1..c4fa957c8d35 100644 --- a/libbeat/cmd/instance/imports_docker.go +++ b/libbeat/cmd/instance/imports_docker.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package instance diff --git a/libbeat/cmd/instance/locker_test.go b/libbeat/cmd/instance/locker_test.go index 7e15517edb53..5ad22f91e495 100644 --- a/libbeat/cmd/instance/locker_test.go +++ b/libbeat/cmd/instance/locker_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package instance diff --git a/libbeat/cmd/instance/metrics/metrics.go b/libbeat/cmd/instance/metrics/metrics.go index 8865b4967c95..0df87a522f3c 100644 --- a/libbeat/cmd/instance/metrics/metrics.go +++ b/libbeat/cmd/instance/metrics/metrics.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (darwin && cgo) || (freebsd && cgo) || linux || windows // +build darwin,cgo freebsd,cgo linux windows package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_file_descriptors.go b/libbeat/cmd/instance/metrics/metrics_file_descriptors.go index 14ce5e1e65de..6524cff8c09c 100644 --- a/libbeat/cmd/instance/metrics/metrics_file_descriptors.go +++ b/libbeat/cmd/instance/metrics/metrics_file_descriptors.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || (freebsd && cgo) // +build linux freebsd,cgo package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go b/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go index b0cc8b2b8d66..0a3d3943692d 100644 --- a/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go +++ b/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && (!freebsd || !cgo) // +build !linux // +build !freebsd !cgo diff --git a/libbeat/cmd/instance/metrics/metrics_handles.go b/libbeat/cmd/instance/metrics/metrics_handles.go index 5de41f7d70b5..0ace3016e61f 100644 --- a/libbeat/cmd/instance/metrics/metrics_handles.go +++ b/libbeat/cmd/instance/metrics/metrics_handles.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_handles_stub.go b/libbeat/cmd/instance/metrics/metrics_handles_stub.go index fa54b75fecda..5cdfe9fde8cc 100644 --- a/libbeat/cmd/instance/metrics/metrics_handles_stub.go +++ b/libbeat/cmd/instance/metrics/metrics_handles_stub.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_other.go b/libbeat/cmd/instance/metrics/metrics_other.go index 459d2fcbc682..60cf1776e625 100644 --- a/libbeat/cmd/instance/metrics/metrics_other.go +++ b/libbeat/cmd/instance/metrics/metrics_other.go @@ -15,9 +15,11 @@ // specific language governing permissions and limitations // under the License. +//go:build (!darwin || !cgo) && (!freebsd || !cgo) && !linux && !windows // +build !darwin !cgo // +build !freebsd !cgo -// +build !linux,!windows +// +build !linux +// +build !windows package metrics diff --git a/libbeat/cmd/instance/umask_other.go b/libbeat/cmd/instance/umask_other.go index e3af909f7850..ba9245a7f4aa 100644 --- a/libbeat/cmd/instance/umask_other.go +++ b/libbeat/cmd/instance/umask_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package instance diff --git a/libbeat/cmd/platformcheck/platformcheck.go b/libbeat/cmd/platformcheck/platformcheck.go index e3ccc50ad06a..8823ba9f896b 100644 --- a/libbeat/cmd/platformcheck/platformcheck.go +++ b/libbeat/cmd/platformcheck/platformcheck.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || windows // +build linux windows package platformcheck diff --git a/libbeat/cmd/platformcheck/platformcheck_other.go b/libbeat/cmd/platformcheck/platformcheck_other.go index 5ef8d3e8090c..502b555821c2 100644 --- a/libbeat/cmd/platformcheck/platformcheck_other.go +++ b/libbeat/cmd/platformcheck/platformcheck_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package platformcheck diff --git a/libbeat/common/atomic/atomic32.go b/libbeat/common/atomic/atomic32.go index 17c41392e693..2f776a716934 100644 --- a/libbeat/common/atomic/atomic32.go +++ b/libbeat/common/atomic/atomic32.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build 386 || arm || mips || mipsle // +build 386 arm mips mipsle package atomic diff --git a/libbeat/common/atomic/atomic64.go b/libbeat/common/atomic/atomic64.go index 5d7de52026a1..8e1a2a0be064 100644 --- a/libbeat/common/atomic/atomic64.go +++ b/libbeat/common/atomic/atomic64.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build amd64 || arm64 || ppc64 || ppc64le || mips64 || mips64le || s390x // +build amd64 arm64 ppc64 ppc64le mips64 mips64le s390x package atomic diff --git a/libbeat/common/bytes_test.go b/libbeat/common/bytes_test.go index b3738f510c0d..a75f4067be34 100644 --- a/libbeat/common/bytes_test.go +++ b/libbeat/common/bytes_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/cache_test.go b/libbeat/common/cache_test.go index eb88bda845f6..9ab6d1617e70 100644 --- a/libbeat/common/cache_test.go +++ b/libbeat/common/cache_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/capabilities_linux.go b/libbeat/common/capabilities_linux.go index e05cf99fb72a..46d30df8e6d9 100644 --- a/libbeat/common/capabilities_linux.go +++ b/libbeat/common/capabilities_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package common diff --git a/libbeat/common/csv_test.go b/libbeat/common/csv_test.go index cc4e62819fe3..5bf6a6d3f7a4 100644 --- a/libbeat/common/csv_test.go +++ b/libbeat/common/csv_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/datetime_test.go b/libbeat/common/datetime_test.go index f9c2dfab5129..7fb071b2e5c9 100644 --- a/libbeat/common/datetime_test.go +++ b/libbeat/common/datetime_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/docker/client.go b/libbeat/common/docker/client.go index de29a0f8c22e..9efa89aac67e 100644 --- a/libbeat/common/docker/client.go +++ b/libbeat/common/docker/client.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/common/docker/client_test.go b/libbeat/common/docker/client_test.go index 1395ea5465d4..af6f7c6d0892 100644 --- a/libbeat/common/docker/client_test.go +++ b/libbeat/common/docker/client_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && (linux || darwin || windows) // +build integration // +build linux darwin windows diff --git a/libbeat/common/docker/watcher.go b/libbeat/common/docker/watcher.go index 5b490b1e13ec..b500e73775e4 100644 --- a/libbeat/common/docker/watcher.go +++ b/libbeat/common/docker/watcher.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/common/docker/watcher_test.go b/libbeat/common/docker/watcher_test.go index a0de0567af40..e7908e3fe2ba 100644 --- a/libbeat/common/docker/watcher_test.go +++ b/libbeat/common/docker/watcher_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/common/encoding/xml/decode_test.go b/libbeat/common/encoding/xml/decode_test.go index 9dd585ac6d79..2e975cd4b999 100644 --- a/libbeat/common/encoding/xml/decode_test.go +++ b/libbeat/common/encoding/xml/decode_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package xml diff --git a/libbeat/common/event.go b/libbeat/common/event.go index f68cf33cc87a..0d2a312166ef 100644 --- a/libbeat/common/event.go +++ b/libbeat/common/event.go @@ -33,6 +33,11 @@ import ( var textMarshalerType = reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem() +// Float is a float64 wrapper that implements the encoding/json Marshaler +// interface to add a decimal point to all float values. +// +// Deprecated: This type should no longer be used and the Marshaler interface +// is not consulted while marshaling to JSON in libbeat outputs. type Float float64 // EventConverter is used to convert MapStr objects for publishing @@ -208,10 +213,7 @@ func (e *GenericEventConverter) normalizeValue(value interface{}, keys ...string } return tmp, nil - case float64: - return Float(value.(float64)), nil - case float32: - return Float(value.(float32)), nil + case float32, float64: case []float32, []float64: case complex64, complex128: case []complex64, []complex128: @@ -238,7 +240,7 @@ func (e *GenericEventConverter) normalizeValue(value interface{}, keys ...string case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: return v.Uint() &^ (1 << 63), nil case reflect.Float32, reflect.Float64: - return Float(v.Float()), nil + return v.Float(), nil case reflect.Complex64, reflect.Complex128: return v.Complex(), nil case reflect.String: diff --git a/libbeat/common/event_test.go b/libbeat/common/event_test.go index c9d3a36e0c94..e9c493cb5de5 100644 --- a/libbeat/common/event_test.go +++ b/libbeat/common/event_test.go @@ -267,7 +267,7 @@ func TestNormalizeValue(t *testing.T) { } checkDelta := func(t *testing.T, a, b interface{}) { - assert.InDelta(t, a, float64(b.(Float)), 0.000001) + assert.InDelta(t, a, b, 0.000001) } var nilStringPtr *string diff --git a/libbeat/common/file/file_other.go b/libbeat/common/file/file_other.go index 86aa193f21b9..f57fd01309a9 100644 --- a/libbeat/common/file/file_other.go +++ b/libbeat/common/file/file_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/libbeat/common/file/file_other_test.go b/libbeat/common/file/file_other_test.go index efc60b340db4..4e07b7facbcf 100644 --- a/libbeat/common/file/file_other_test.go +++ b/libbeat/common/file/file_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !integration // +build !windows,!integration package file diff --git a/libbeat/common/file/file_windows_test.go b/libbeat/common/file/file_windows_test.go index b2f732712fb4..72bceea0b184 100644 --- a/libbeat/common/file/file_windows_test.go +++ b/libbeat/common/file/file_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package file diff --git a/libbeat/common/file/fileinfo_test.go b/libbeat/common/file/fileinfo_test.go index 9df25ba638a7..1ca6507b8a8b 100644 --- a/libbeat/common/file/fileinfo_test.go +++ b/libbeat/common/file/fileinfo_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !openbsd // +build !windows,!openbsd // Test for openbsd are excluded here as info.GID() returns 0 instead of the actual value diff --git a/libbeat/common/file/fileinfo_unix.go b/libbeat/common/file/fileinfo_unix.go index 07e4288307ee..9a0ce88e4e81 100644 --- a/libbeat/common/file/fileinfo_unix.go +++ b/libbeat/common/file/fileinfo_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/libbeat/common/file/helper_other.go b/libbeat/common/file/helper_other.go index 6347b7b28805..a2fdee7ec945 100644 --- a/libbeat/common/file/helper_other.go +++ b/libbeat/common/file/helper_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !aix && !windows // +build !aix,!windows package file diff --git a/libbeat/common/file/helper_test.go b/libbeat/common/file/helper_test.go index 201551b457c6..2a936e7994d1 100644 --- a/libbeat/common/file/helper_test.go +++ b/libbeat/common/file/helper_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package file diff --git a/libbeat/common/file/stderr_other.go b/libbeat/common/file/stderr_other.go index 408e1f1fe97f..d6454ee68047 100644 --- a/libbeat/common/file/stderr_other.go +++ b/libbeat/common/file/stderr_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go index 0279e0a9a4dd..3497a0a03619 100644 --- a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go +++ b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go @@ -62,7 +62,7 @@ func (kr *KubernetesKeystoresRegistry) GetKeystore(event bus.Event) keystore.Key namespace := "" if val, ok := event["kubernetes"]; ok { kubernetesMeta := val.(common.MapStr) - ns, err := kubernetesMeta.GetValue("namespace") + ns, err := kubernetesMeta.GetValue("namespace.name") if err != nil { kr.logger.Debugf("Cannot retrieve kubernetes namespace from event: %s", event) return nil diff --git a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go index 359479b9eb89..68656b0b4e73 100644 --- a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go +++ b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go @@ -34,10 +34,10 @@ import ( func TestGetKeystore(t *testing.T) { kRegistry := NewKubernetesKeystoresRegistry(nil, nil) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": "my_namespace"}}) - k2 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": "my_namespace"}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": "my_namespace"}}}) + k2 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": "my_namespace"}}}) assert.Equal(t, k1, k2) - k3 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": "my_namespace_2"}}) + k3 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": "my_namespace_2"}}}) assert.NotEqual(t, k2, k3) } @@ -64,7 +64,7 @@ func TestGetKeystoreAndRetrieve(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(nil, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret.secret_value" secure, err := k1.Retrieve(key) if err != nil { @@ -100,7 +100,7 @@ func TestGetKeystoreAndRetrieveWithNonAllowedNamespace(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace_HACK.testing_secret.secret_value" _, err = k1.Retrieve(key) assert.Error(t, err) @@ -130,7 +130,7 @@ func TestGetKeystoreAndRetrieveWithWrongKeyFormat(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "HACK_test_namespace_HACK.testing_secret.secret_value" _, err = k1.Retrieve(key) assert.Error(t, err) @@ -142,7 +142,7 @@ func TestGetKeystoreAndRetrieveWithNoSecretsExistent(t *testing.T) { ns := "test_namespace" kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret.secret_value" _, err := k1.Retrieve(key) assert.Error(t, err) @@ -172,7 +172,7 @@ func TestGetKeystoreAndRetrieveWithWrongSecretName(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret_WRONG.secret_value" _, err = k1.Retrieve(key) assert.Error(t, err) @@ -202,7 +202,7 @@ func TestGetKeystoreAndRetrieveWithWrongSecretValue(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret.secret_value_WRONG" _, err = k1.Retrieve(key) assert.Error(t, err) diff --git a/libbeat/common/kubernetes/metadata/namespace.go b/libbeat/common/kubernetes/metadata/namespace.go index 697f6b599f83..424eab15d9af 100644 --- a/libbeat/common/kubernetes/metadata/namespace.go +++ b/libbeat/common/kubernetes/metadata/namespace.go @@ -70,8 +70,7 @@ func (n *namespace) GenerateK8s(obj kubernetes.Resource, opts ...FieldOptions) c } meta := n.resource.GenerateK8s(resource, obj, opts...) - // TODO: remove this call when moving to 8.0 - meta = flattenMetadata(meta) + meta = unifyResourceMetadata(meta) // TODO: Add extra fields in here if need be return meta @@ -95,25 +94,39 @@ func (n *namespace) GenerateFromName(name string, opts ...FieldOptions) common.M return nil } -func flattenMetadata(in common.MapStr) common.MapStr { - out := common.MapStr{} - rawFields, err := in.GetValue(resource) - if err != nil { - return nil - } - - fields, ok := rawFields.(common.MapStr) +// unifyResourceMetadata moves all the resource's metadata (labels, annotations) +// under the resource field +// example input: +// "kubernetes": common.MapStr{ +// "labels": common.MapStr{ +// "foo": "bar", +// }, +// "annotations": common.MapStr{ +// "spam": "baz", +// }, +// "namespace": common.MapStr{ +// "name": name, +// "uid": uid, +// }, +// }, +// example output: +// "kubernetes": common.MapStr{ +// "namespace": common.MapStr{ +// "name": name, +// "uid": uid, +// "labels": common.MapStr{ +// "foo": "bar", +// }, +// "annotations": common.MapStr{ +// "spam": "baz", +// }, +// }, +// }, +func unifyResourceMetadata(in common.MapStr) common.MapStr { + resourceValues, ok := in[resource].(common.MapStr) if !ok { - return nil + return in } - for k, v := range fields { - if k == "name" { - out[resource] = v - } else { - out[resource+"_"+k] = v - } - } - populateFromKeys := []string{"labels", "annotations"} for _, key := range populateFromKeys { rawValues, err := in.GetValue(key) @@ -122,9 +135,10 @@ func flattenMetadata(in common.MapStr) common.MapStr { } values, ok := rawValues.(common.MapStr) if ok { - out[resource+"_"+key] = values + resourceValues.Put(key, values) + in.Delete(key) } } - return out + return in } diff --git a/libbeat/common/kubernetes/metadata/namespace_test.go b/libbeat/common/kubernetes/metadata/namespace_test.go index aff54bac26f5..12f4f1377d96 100644 --- a/libbeat/common/kubernetes/metadata/namespace_test.go +++ b/libbeat/common/kubernetes/metadata/namespace_test.go @@ -61,29 +61,20 @@ func TestNamespace_Generate(t *testing.T) { APIVersion: "v1", }, }, - // Use this for 8.0 - /* - output: common.MapStr{ - "kubernetes": common.MapStr{ - "namespace": common.MapStr{ - "name": name, - "uid": uid, - "labels": common.MapStr{ - "foo": "bar", - }, + output: common.MapStr{ + "kubernetes": common.MapStr{ + "namespace": common.MapStr{ + "name": name, + "uid": uid, + "labels": common.MapStr{ + "foo": "bar", + }, + "annotations": common.MapStr{ + "spam": "baz", }, }, - },*/ - output: common.MapStr{"kubernetes": common.MapStr{ - "namespace": name, - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "foo": "bar", - }, - "namespace_annotations": common.MapStr{ - "spam": "baz", }, - }}, + }, }, } @@ -129,25 +120,16 @@ func TestNamespace_GenerateFromName(t *testing.T) { APIVersion: "v1", }, }, - // Use this for 8.0 - /* - output: common.MapStr{ - "namespace": common.MapStr{ - "name": name, - "uid": uid, - "labels": common.MapStr{ - "foo": "bar", - }, - }, - },*/ output: common.MapStr{ - "namespace": name, - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "foo": "bar", - }, - "namespace_annotations": common.MapStr{ - "spam": "baz", + "namespace": common.MapStr{ + "name": name, + "uid": uid, + "labels": common.MapStr{ + "foo": "bar", + }, + "annotations": common.MapStr{ + "spam": "baz", + }, }, }, }, diff --git a/libbeat/common/kubernetes/metadata/pod_test.go b/libbeat/common/kubernetes/metadata/pod_test.go index d21307678a5d..040d2d2fba8e 100644 --- a/libbeat/common/kubernetes/metadata/pod_test.go +++ b/libbeat/common/kubernetes/metadata/pod_test.go @@ -133,7 +133,9 @@ func TestPod_Generate(t *testing.T) { "annotations": common.MapStr{ "app": "production", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "node": common.MapStr{ "name": "testnode", }, @@ -179,7 +181,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -234,7 +238,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "daemonset": common.MapStr{ "name": "owner", }, @@ -289,7 +295,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "nginx-deployment", }, @@ -347,7 +355,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "nginx-deployment", }, @@ -422,7 +432,9 @@ func TestPod_GenerateFromName(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "node": common.MapStr{ "name": "testnode", }, @@ -472,7 +484,9 @@ func TestPod_GenerateFromName(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -579,10 +593,12 @@ func TestPod_GenerateWithNodeNamespace(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "nskey": "nsvalue", + "namespace": common.MapStr{ + "name": "default", + "uid": uid, + "labels": common.MapStr{ + "nskey": "nsvalue", + }, }, "node": common.MapStr{ "name": "testnode", diff --git a/libbeat/common/kubernetes/metadata/resource.go b/libbeat/common/kubernetes/metadata/resource.go index 7bbd05e4b986..e9591eebbcf5 100644 --- a/libbeat/common/kubernetes/metadata/resource.go +++ b/libbeat/common/kubernetes/metadata/resource.go @@ -107,8 +107,7 @@ func (r *Resource) GenerateK8s(kind string, obj kubernetes.Resource, options ... } if accessor.GetNamespace() != "" { - // TODO make this namespace.name in 8.0 - safemapstr.Put(meta, "namespace", accessor.GetNamespace()) + safemapstr.Put(meta, "namespace.name", accessor.GetNamespace()) } // Add controller metadata if present diff --git a/libbeat/common/kubernetes/metadata/resource_test.go b/libbeat/common/kubernetes/metadata/resource_test.go index 5ed6f20fce0a..2cbe6d3a9705 100644 --- a/libbeat/common/kubernetes/metadata/resource_test.go +++ b/libbeat/common/kubernetes/metadata/resource_test.go @@ -67,7 +67,9 @@ func TestResource_Generate(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, }, }, }, @@ -106,7 +108,9 @@ func TestResource_Generate(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, diff --git a/libbeat/common/kubernetes/metadata/service_test.go b/libbeat/common/kubernetes/metadata/service_test.go index e77de70ca8a4..197627aa92cb 100644 --- a/libbeat/common/kubernetes/metadata/service_test.go +++ b/libbeat/common/kubernetes/metadata/service_test.go @@ -81,7 +81,9 @@ func TestService_Generate(t *testing.T) { "app": "istiod", "istio": "pilot", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, }, }, }, @@ -130,7 +132,9 @@ func TestService_Generate(t *testing.T) { "app": "istiod", "istio": "pilot", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -184,7 +188,9 @@ func TestService_GenerateFromName(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, }, }, { @@ -221,7 +227,9 @@ func TestService_GenerateFromName(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -295,19 +303,12 @@ func TestService_GenerateWithNamespace(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - // Use this for 8.0 - /* - "namespace": common.MapStr{ - "name": "default", - "uid": uid, - "labels": common.MapStr{ - "nskey": "nsvalue", - }, - },*/ - "namespace": "default", - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "nskey": "nsvalue", + "namespace": common.MapStr{ + "name": "default", + "uid": uid, + "labels": common.MapStr{ + "nskey": "nsvalue", + }, }, }, }, diff --git a/libbeat/common/mapstr_test.go b/libbeat/common/mapstr_test.go index e1ffb8f5ee42..3847d2eda46f 100644 --- a/libbeat/common/mapstr_test.go +++ b/libbeat/common/mapstr_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/net_test.go b/libbeat/common/net_test.go index d67c411c76cb..5bfd7fb2666d 100644 --- a/libbeat/common/net_test.go +++ b/libbeat/common/net_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/seccomp/policy_linux_386.go b/libbeat/common/seccomp/policy_linux_386.go index 796b071a1046..40b49113b733 100644 --- a/libbeat/common/seccomp/policy_linux_386.go +++ b/libbeat/common/seccomp/policy_linux_386.go @@ -35,6 +35,7 @@ func init() { "chown", "clock_gettime", "clone", + "clone3", "close", "dup", "dup2", diff --git a/libbeat/common/seccomp/policy_linux_amd64.go b/libbeat/common/seccomp/policy_linux_amd64.go index 4246e6a1a519..6096b37bb329 100644 --- a/libbeat/common/seccomp/policy_linux_amd64.go +++ b/libbeat/common/seccomp/policy_linux_amd64.go @@ -38,6 +38,7 @@ func init() { "chown", "clock_gettime", "clone", + "clone3", "close", "connect", "dup", diff --git a/libbeat/common/streambuf/ascii_test.go b/libbeat/common/streambuf/ascii_test.go index 3ec25c80f0ca..833acf69b411 100644 --- a/libbeat/common/streambuf/ascii_test.go +++ b/libbeat/common/streambuf/ascii_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/streambuf/io_test.go b/libbeat/common/streambuf/io_test.go index dcbfb4a232a0..604630b7ae49 100644 --- a/libbeat/common/streambuf/io_test.go +++ b/libbeat/common/streambuf/io_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/streambuf/net_test.go b/libbeat/common/streambuf/net_test.go index c3ddcb1a3a49..996d2f0ec2a9 100644 --- a/libbeat/common/streambuf/net_test.go +++ b/libbeat/common/streambuf/net_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/streambuf/streambuf_test.go b/libbeat/common/streambuf/streambuf_test.go index b21b1a3f03d2..8b40c6b08c53 100644 --- a/libbeat/common/streambuf/streambuf_test.go +++ b/libbeat/common/streambuf/streambuf_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/transport/tlscommon/tls_test.go b/libbeat/common/transport/tlscommon/tls_test.go index 5d610af5bf4a..7788b65626b9 100644 --- a/libbeat/common/transport/tlscommon/tls_test.go +++ b/libbeat/common/transport/tlscommon/tls_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tlscommon diff --git a/libbeat/common/transport/tlscommon/versions_default.go b/libbeat/common/transport/tlscommon/versions_default.go index 77eff7375eb3..2d5180864c62 100644 --- a/libbeat/common/transport/tlscommon/versions_default.go +++ b/libbeat/common/transport/tlscommon/versions_default.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build go1.13 // +build go1.13 package tlscommon diff --git a/libbeat/common/transport/tlscommon/versions_legacy.go b/libbeat/common/transport/tlscommon/versions_legacy.go index 4d1a7c722636..18d557a24955 100644 --- a/libbeat/common/transport/tlscommon/versions_legacy.go +++ b/libbeat/common/transport/tlscommon/versions_legacy.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !go1.13 // +build !go1.13 package tlscommon diff --git a/libbeat/common/tuples_test.go b/libbeat/common/tuples_test.go index d111cc62e676..a92925436359 100644 --- a/libbeat/common/tuples_test.go +++ b/libbeat/common/tuples_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/url_test.go b/libbeat/common/url_test.go index 1a8f5519b1d9..340be8c271a8 100644 --- a/libbeat/common/url_test.go +++ b/libbeat/common/url_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/docs/version.asciidoc b/libbeat/docs/version.asciidoc index 78390e58d22a..18975272bc4e 100644 --- a/libbeat/docs/version.asciidoc +++ b/libbeat/docs/version.asciidoc @@ -1,6 +1,6 @@ :stack-version: 8.0.0 :doc-branch: master -:go-version: 1.16.6 +:go-version: 1.17.1 :release-state: unreleased :python: 3.7 :docker: 1.12 diff --git a/libbeat/esleg/eslegclient/api_integration_test.go b/libbeat/esleg/eslegclient/api_integration_test.go index 986f012fa04a..1a5b7c229f4e 100644 --- a/libbeat/esleg/eslegclient/api_integration_test.go +++ b/libbeat/esleg/eslegclient/api_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package eslegclient diff --git a/libbeat/esleg/eslegclient/api_mock_test.go b/libbeat/esleg/eslegclient/api_mock_test.go index cfb9b9b722be..0ae6036967ac 100644 --- a/libbeat/esleg/eslegclient/api_mock_test.go +++ b/libbeat/esleg/eslegclient/api_mock_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package eslegclient diff --git a/libbeat/esleg/eslegclient/bulkapi_integration_test.go b/libbeat/esleg/eslegclient/bulkapi_integration_test.go index d2201b6e8bda..6c57d55187ab 100644 --- a/libbeat/esleg/eslegclient/bulkapi_integration_test.go +++ b/libbeat/esleg/eslegclient/bulkapi_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package eslegclient diff --git a/libbeat/esleg/eslegclient/bulkapi_mock_test.go b/libbeat/esleg/eslegclient/bulkapi_mock_test.go index 3f5c48b731ea..895bd6df282a 100644 --- a/libbeat/esleg/eslegclient/bulkapi_mock_test.go +++ b/libbeat/esleg/eslegclient/bulkapi_mock_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package eslegclient diff --git a/libbeat/esleg/eslegclient/connection_integration_test.go b/libbeat/esleg/eslegclient/connection_integration_test.go index b1a80a4a9966..cf162cf1f9c9 100644 --- a/libbeat/esleg/eslegclient/connection_integration_test.go +++ b/libbeat/esleg/eslegclient/connection_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package eslegclient diff --git a/libbeat/esleg/eslegclient/url_test.go b/libbeat/esleg/eslegclient/url_test.go index 8e444a660e4c..a8a5912f1c18 100644 --- a/libbeat/esleg/eslegclient/url_test.go +++ b/libbeat/esleg/eslegclient/url_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package eslegclient diff --git a/libbeat/idxmgmt/ilm/client_handler_integration_test.go b/libbeat/idxmgmt/ilm/client_handler_integration_test.go index 4d1e6f5ed645..e8a7d7be713c 100644 --- a/libbeat/idxmgmt/ilm/client_handler_integration_test.go +++ b/libbeat/idxmgmt/ilm/client_handler_integration_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build integration +//go:build integration +// +build integration package ilm_test diff --git a/libbeat/kibana/client.go b/libbeat/kibana/client.go index 4a96546dee2a..111db2e3816c 100644 --- a/libbeat/kibana/client.go +++ b/libbeat/kibana/client.go @@ -48,11 +48,12 @@ var ( ) type Connection struct { - URL string - Username string - Password string - APIKey string - Headers http.Header + URL string + Username string + Password string + APIKey string + ServiceToken string + Headers http.Header HTTP *http.Client Version common.Version @@ -196,12 +197,13 @@ func NewClientWithConfigDefault(config *ClientConfig, defaultPort int, beatname client := &Client{ Connection: Connection{ - URL: kibanaURL, - Username: username, - Password: password, - APIKey: config.APIKey, - Headers: headers, - HTTP: rt, + URL: kibanaURL, + Username: username, + Password: password, + APIKey: config.APIKey, + ServiceToken: config.ServiceToken, + Headers: headers, + HTTP: rt, }, log: log, } @@ -267,6 +269,10 @@ func (conn *Connection) SendWithContext(ctx context.Context, method, extraPath s v := "ApiKey " + base64.StdEncoding.EncodeToString([]byte(conn.APIKey)) req.Header.Set("Authorization", v) } + if conn.ServiceToken != "" { + v := "Bearer " + conn.ServiceToken + req.Header.Set("Authorization", v) + } addHeaders(req.Header, conn.Headers) addHeaders(req.Header, headers) diff --git a/libbeat/kibana/client_config.go b/libbeat/kibana/client_config.go index 6219fb3c718e..c8c3758c71be 100644 --- a/libbeat/kibana/client_config.go +++ b/libbeat/kibana/client_config.go @@ -25,13 +25,14 @@ import ( // ClientConfig to connect to Kibana type ClientConfig struct { - Protocol string `config:"protocol" yaml:"protocol,omitempty"` - Host string `config:"host" yaml:"host,omitempty"` - Path string `config:"path" yaml:"path,omitempty"` - SpaceID string `config:"space.id" yaml:"space.id,omitempty"` - Username string `config:"username" yaml:"username,omitempty"` - Password string `config:"password" yaml:"password,omitempty"` - APIKey string `config:"api_key" yaml:"api_key,omitempty"` + Protocol string `config:"protocol" yaml:"protocol,omitempty"` + Host string `config:"host" yaml:"host,omitempty"` + Path string `config:"path" yaml:"path,omitempty"` + SpaceID string `config:"space.id" yaml:"space.id,omitempty"` + Username string `config:"username" yaml:"username,omitempty"` + Password string `config:"password" yaml:"password,omitempty"` + APIKey string `config:"api_key" yaml:"api_key,omitempty"` + ServiceToken string `config:"service_token" yaml:"service_token,omitempty"` // Headers holds headers to include in every request sent to Kibana. Headers map[string]string `config:"headers" yaml:"headers,omitempty"` @@ -44,14 +45,15 @@ type ClientConfig struct { // DefaultClientConfig connects to a locally running kibana over HTTP func DefaultClientConfig() ClientConfig { return ClientConfig{ - Protocol: "http", - Host: "localhost:5601", - Path: "", - SpaceID: "", - Username: "", - Password: "", - APIKey: "", - Transport: httpcommon.DefaultHTTPTransportSettings(), + Protocol: "http", + Host: "localhost:5601", + Path: "", + SpaceID: "", + Username: "", + Password: "", + APIKey: "", + ServiceToken: "", + Transport: httpcommon.DefaultHTTPTransportSettings(), } } diff --git a/libbeat/kibana/client_config_test.go b/libbeat/kibana/client_config_test.go index 1355e696aadd..0e3656443419 100644 --- a/libbeat/kibana/client_config_test.go +++ b/libbeat/kibana/client_config_test.go @@ -46,6 +46,12 @@ func TestClientConfigValdiate(t *testing.T) { APIKey: "api-key", }, err: nil, + }, { + name: "service_token", + c: &ClientConfig{ + ServiceToken: "service_token", + }, + err: nil, }, { name: "username and api_key", c: &ClientConfig{ diff --git a/libbeat/kibana/client_test.go b/libbeat/kibana/client_test.go index 27dfc53f3701..d3e2a66f8d34 100644 --- a/libbeat/kibana/client_test.go +++ b/libbeat/kibana/client_test.go @@ -96,6 +96,26 @@ func TestSuccess(t *testing.T) { assert.NoError(t, err) } +func TestServiceToken(t *testing.T) { + serviceToken := "fakeservicetoken" + + kibanaTs := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(`{}`)) + + assert.Equal(t, "Bearer "+serviceToken, r.Header.Get("Authorization")) + })) + defer kibanaTs.Close() + + conn := Connection{ + URL: kibanaTs.URL, + HTTP: http.DefaultClient, + ServiceToken: serviceToken, + } + code, _, err := conn.Request(http.MethodPost, "", url.Values{}, http.Header{"foo": []string{"bar"}}, nil) + assert.Equal(t, http.StatusOK, code) + assert.NoError(t, err) +} + func TestNewKibanaClient(t *testing.T) { var requests []*http.Request kibanaTs := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { diff --git a/libbeat/licenser/elastic_fetcher_integration_test.go b/libbeat/licenser/elastic_fetcher_integration_test.go index ba1dd21a6302..c12f6651bfe4 100644 --- a/libbeat/licenser/elastic_fetcher_integration_test.go +++ b/libbeat/licenser/elastic_fetcher_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package licenser diff --git a/libbeat/logp/eventlog_unsupported.go b/libbeat/logp/eventlog_unsupported.go index b37c57da5b16..f63308170b71 100644 --- a/libbeat/logp/eventlog_unsupported.go +++ b/libbeat/logp/eventlog_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package logp diff --git a/libbeat/logp/global.go b/libbeat/logp/global.go index 584379c71a51..7a836aae0267 100644 --- a/libbeat/logp/global.go +++ b/libbeat/logp/global.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !nologpglobal +//go:build !nologpglobal +// +build !nologpglobal package logp diff --git a/libbeat/logp/global_test.go b/libbeat/logp/global_test.go index 400dc0a34e45..b0df4262805c 100644 --- a/libbeat/logp/global_test.go +++ b/libbeat/logp/global_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !nologpglobal +//go:build !nologpglobal +// +build !nologpglobal package logp diff --git a/libbeat/logp/syslog_unix.go b/libbeat/logp/syslog_unix.go index 45f70ebe47b4..c6d28bde0396 100644 --- a/libbeat/logp/syslog_unix.go +++ b/libbeat/logp/syslog_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !nacl && !plan9 // +build !windows,!nacl,!plan9 package logp diff --git a/libbeat/logp/syslog_unsupported.go b/libbeat/logp/syslog_unsupported.go index 222146cd1c3d..677ded92d8d3 100644 --- a/libbeat/logp/syslog_unsupported.go +++ b/libbeat/logp/syslog_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows || nacl || plan9 // +build windows nacl plan9 package logp diff --git a/libbeat/magefile.go b/libbeat/magefile.go index 67e84e63be32..eddc4f5e7aae 100644 --- a/libbeat/magefile.go +++ b/libbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go b/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go index 646f3ccbf5e1..c56c903cfc87 100644 --- a/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go +++ b/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package cgv2 diff --git a/libbeat/metric/system/cgroup/cgv2/io_helper_other.go b/libbeat/metric/system/cgroup/cgv2/io_helper_other.go index 66758171e522..0897c0e883c3 100644 --- a/libbeat/metric/system/cgroup/cgv2/io_helper_other.go +++ b/libbeat/metric/system/cgroup/cgv2/io_helper_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package cgv2 diff --git a/libbeat/metric/system/cpu/cpu.go b/libbeat/metric/system/cpu/cpu.go index fc14652e6ac2..24523366413b 100644 --- a/libbeat/metric/system/cpu/cpu.go +++ b/libbeat/metric/system/cpu/cpu.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package cpu diff --git a/libbeat/metric/system/diskio/disk_performance_386.go b/libbeat/metric/system/diskio/disk_performance_386.go index cdc9dfc49950..e05dc8250046 100644 --- a/libbeat/metric/system/diskio/disk_performance_386.go +++ b/libbeat/metric/system/diskio/disk_performance_386.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/disk_performance_amd64.go b/libbeat/metric/system/diskio/disk_performance_amd64.go index 9a0388a6b247..d925d99d19c1 100644 --- a/libbeat/metric/system/diskio/disk_performance_amd64.go +++ b/libbeat/metric/system/diskio/disk_performance_amd64.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat.go b/libbeat/metric/system/diskio/diskstat.go index 3cea37c552a5..001f0725da10 100644 --- a/libbeat/metric/system/diskio/diskstat.go +++ b/libbeat/metric/system/diskio/diskstat.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat_linux.go b/libbeat/metric/system/diskio/diskstat_linux.go index 964fbf7663dd..fbcd6a479045 100644 --- a/libbeat/metric/system/diskio/diskstat_linux.go +++ b/libbeat/metric/system/diskio/diskstat_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package diskio diff --git a/libbeat/metric/system/diskio/diskstat_linux_test.go b/libbeat/metric/system/diskio/diskstat_linux_test.go index 74c0bef231ef..001914097f95 100644 --- a/libbeat/metric/system/diskio/diskstat_linux_test.go +++ b/libbeat/metric/system/diskio/diskstat_linux_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build !integration -// +build linux +//go:build !integration && linux +// +build !integration,linux package diskio diff --git a/libbeat/metric/system/diskio/diskstat_other.go b/libbeat/metric/system/diskio/diskstat_other.go index ad5208b1b4fc..8c53d24aea59 100644 --- a/libbeat/metric/system/diskio/diskstat_other.go +++ b/libbeat/metric/system/diskio/diskstat_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (darwin && cgo) || freebsd // +build darwin,cgo freebsd package diskio diff --git a/libbeat/metric/system/diskio/diskstat_windows.go b/libbeat/metric/system/diskio/diskstat_windows.go index 665caab91301..389e928052d2 100644 --- a/libbeat/metric/system/diskio/diskstat_windows.go +++ b/libbeat/metric/system/diskio/diskstat_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat_windows_helper.go b/libbeat/metric/system/diskio/diskstat_windows_helper.go index 5d9072fda426..50c30288ff53 100644 --- a/libbeat/metric/system/diskio/diskstat_windows_helper.go +++ b/libbeat/metric/system/diskio/diskstat_windows_helper.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat_windows_test.go b/libbeat/metric/system/diskio/diskstat_windows_test.go index 6218e881346c..6d363ea5883d 100644 --- a/libbeat/metric/system/diskio/diskstat_windows_test.go +++ b/libbeat/metric/system/diskio/diskstat_windows_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build !integration -// +build windows +//go:build !integration && windows +// +build !integration,windows package diskio diff --git a/libbeat/metric/system/numcpu/cpu_bsd.go b/libbeat/metric/system/numcpu/cpu_bsd.go index 1b0c4142ed43..a3dcb2f82ee1 100644 --- a/libbeat/metric/system/numcpu/cpu_bsd.go +++ b/libbeat/metric/system/numcpu/cpu_bsd.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build openbsd || freebsd // +build openbsd freebsd package numcpu diff --git a/libbeat/metric/system/numcpu/cpu_cgo.go b/libbeat/metric/system/numcpu/cpu_cgo.go index fe6da963daf0..0fded10405cb 100644 --- a/libbeat/metric/system/numcpu/cpu_cgo.go +++ b/libbeat/metric/system/numcpu/cpu_cgo.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (freebsd && !cgo) || (openbsd && !cgo) // +build freebsd,!cgo openbsd,!cgo package numcpu diff --git a/libbeat/metric/system/numcpu/cpu_other.go b/libbeat/metric/system/numcpu/cpu_other.go index 9e7bca21d6fa..5737d423382a 100644 --- a/libbeat/metric/system/numcpu/cpu_other.go +++ b/libbeat/metric/system/numcpu/cpu_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !freebsd && !openbsd && !windows // +build !linux,!freebsd,!openbsd,!windows package numcpu diff --git a/libbeat/metric/system/process/process.go b/libbeat/metric/system/process/process.go index 8ec358d3a812..756f9d0e6a80 100644 --- a/libbeat/metric/system/process/process.go +++ b/libbeat/metric/system/process/process.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process diff --git a/libbeat/metric/system/process/process_other.go b/libbeat/metric/system/process/process_other.go index b0132cdf5599..1c29c2df46be 100644 --- a/libbeat/metric/system/process/process_other.go +++ b/libbeat/metric/system/process/process_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package process diff --git a/libbeat/metric/system/process/process_test.go b/libbeat/metric/system/process/process_test.go index 712b78085477..bbd65ed33942 100644 --- a/libbeat/metric/system/process/process_test.go +++ b/libbeat/metric/system/process/process_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration && (darwin || freebsd || linux || windows) // +build !integration // +build darwin freebsd linux windows diff --git a/libbeat/monitoring/opts_test.go b/libbeat/monitoring/opts_test.go index b8e0697066e5..094c5c23717d 100644 --- a/libbeat/monitoring/opts_test.go +++ b/libbeat/monitoring/opts_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitoring diff --git a/libbeat/monitoring/registry_test.go b/libbeat/monitoring/registry_test.go index 4882e93160e4..826ce3bd3e8b 100644 --- a/libbeat/monitoring/registry_test.go +++ b/libbeat/monitoring/registry_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitoring diff --git a/libbeat/monitoring/visitor_expvar_test.go b/libbeat/monitoring/visitor_expvar_test.go index bcc0ab4083fb..fe77e15b1e78 100644 --- a/libbeat/monitoring/visitor_expvar_test.go +++ b/libbeat/monitoring/visitor_expvar_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitoring diff --git a/libbeat/outputs/console/console_test.go b/libbeat/outputs/console/console_test.go index ce3b414448db..9a4b9a9439c7 100644 --- a/libbeat/outputs/console/console_test.go +++ b/libbeat/outputs/console/console_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package console diff --git a/libbeat/outputs/elasticsearch/bulk_test.go b/libbeat/outputs/elasticsearch/bulk_test.go index 30a44a5c14b2..6699d7bd1893 100644 --- a/libbeat/outputs/elasticsearch/bulk_test.go +++ b/libbeat/outputs/elasticsearch/bulk_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package elasticsearch diff --git a/libbeat/outputs/elasticsearch/client_integration_test.go b/libbeat/outputs/elasticsearch/client_integration_test.go index 2ad6a1c79b59..2b05f8a3cdb4 100644 --- a/libbeat/outputs/elasticsearch/client_integration_test.go +++ b/libbeat/outputs/elasticsearch/client_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package elasticsearch diff --git a/libbeat/outputs/elasticsearch/client_test.go b/libbeat/outputs/elasticsearch/client_test.go index 02be8038c400..2a03d10481dd 100644 --- a/libbeat/outputs/elasticsearch/client_test.go +++ b/libbeat/outputs/elasticsearch/client_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package elasticsearch diff --git a/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc b/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc index 2f9f709d2fb2..a3c89dad67e9 100644 --- a/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc +++ b/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc @@ -39,7 +39,7 @@ output.elasticsearch: ---- output.elasticsearch: hosts: ["https://myEShost:9200"] - api_key: "KnR6yE41RrSowb0kQ0HWoA" + api_key: "ZCV7VnwBgnX0T19fN8Qe:KnR6yE41RrSowb0kQ0HWoA" ---- *PKI certificate authentication:* diff --git a/libbeat/outputs/fileout/file_test.go b/libbeat/outputs/fileout/file_test.go index 60eadd2f9c1e..172958190fa8 100644 --- a/libbeat/outputs/fileout/file_test.go +++ b/libbeat/outputs/fileout/file_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileout diff --git a/libbeat/outputs/kafka/kafka_integration_test.go b/libbeat/outputs/kafka/kafka_integration_test.go index af46aa65c731..0cc751d99b9e 100644 --- a/libbeat/outputs/kafka/kafka_integration_test.go +++ b/libbeat/outputs/kafka/kafka_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package kafka diff --git a/libbeat/outputs/kafka/partition_test.go b/libbeat/outputs/kafka/partition_test.go index 7e8bcf4af287..81ded3009d06 100644 --- a/libbeat/outputs/kafka/partition_test.go +++ b/libbeat/outputs/kafka/partition_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package kafka diff --git a/libbeat/outputs/logstash/async_test.go b/libbeat/outputs/logstash/async_test.go index 04d97d8c40b1..c1fb80b68e88 100644 --- a/libbeat/outputs/logstash/async_test.go +++ b/libbeat/outputs/logstash/async_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/logstash/client_test.go b/libbeat/outputs/logstash/client_test.go index c657b922e2c6..424ffa6b3cef 100644 --- a/libbeat/outputs/logstash/client_test.go +++ b/libbeat/outputs/logstash/client_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/logstash/logstash_integration_test.go b/libbeat/outputs/logstash/logstash_integration_test.go index 23db3b376149..e76f4703e677 100644 --- a/libbeat/outputs/logstash/logstash_integration_test.go +++ b/libbeat/outputs/logstash/logstash_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package logstash diff --git a/libbeat/outputs/logstash/sync_test.go b/libbeat/outputs/logstash/sync_test.go index 3ba9e6822327..ab95b456d2f3 100644 --- a/libbeat/outputs/logstash/sync_test.go +++ b/libbeat/outputs/logstash/sync_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/logstash/window_test.go b/libbeat/outputs/logstash/window_test.go index ab5e64f85087..6886df6e7226 100644 --- a/libbeat/outputs/logstash/window_test.go +++ b/libbeat/outputs/logstash/window_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/redis/redis_integration_test.go b/libbeat/outputs/redis/redis_integration_test.go index 3e146cad912b..bc1f09f8bc54 100644 --- a/libbeat/outputs/redis/redis_integration_test.go +++ b/libbeat/outputs/redis/redis_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package redis diff --git a/libbeat/plugin/cli.go b/libbeat/plugin/cli.go index 221a163d064c..185cfe73997d 100644 --- a/libbeat/plugin/cli.go +++ b/libbeat/plugin/cli.go @@ -15,8 +15,9 @@ // specific language governing permissions and limitations // under the License. -//+build linux,go1.8 darwin,go1.10 -//+build cgo +//go:build ((linux && go1.8) || (darwin && go1.10)) && cgo +// +build linux,go1.8 darwin,go1.10 +// +build cgo package plugin diff --git a/libbeat/plugin/cli_stub.go b/libbeat/plugin/cli_stub.go index 3be1dc33250b..e920154ec1e8 100644 --- a/libbeat/plugin/cli_stub.go +++ b/libbeat/plugin/cli_stub.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo +//go:build (linux && !go1.8) || (darwin && !go1.10) || (!linux && !darwin) || !cgo +// +build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo package plugin diff --git a/libbeat/plugin/load.go b/libbeat/plugin/load.go index f07174309e34..0f9a772bc810 100644 --- a/libbeat/plugin/load.go +++ b/libbeat/plugin/load.go @@ -15,8 +15,9 @@ // specific language governing permissions and limitations // under the License. -//+build linux,go1.8 darwin,go1.10 -//+build cgo +//go:build ((linux && go1.8) || (darwin && go1.10)) && cgo +// +build linux,go1.8 darwin,go1.10 +// +build cgo package plugin diff --git a/libbeat/plugin/load_stub.go b/libbeat/plugin/load_stub.go index 829292bf13fe..96e1468af07a 100644 --- a/libbeat/plugin/load_stub.go +++ b/libbeat/plugin/load_stub.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo +//go:build (linux && !go1.8) || (darwin && !go1.10) || (!linux && !darwin) || !cgo +// +build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo package plugin diff --git a/libbeat/processors/actions/add_fields.go b/libbeat/processors/actions/add_fields.go index 3d39c1afb4db..d2dd2d6e867d 100644 --- a/libbeat/processors/actions/add_fields.go +++ b/libbeat/processors/actions/add_fields.go @@ -73,11 +73,13 @@ func NewAddFields(fields common.MapStr, shared bool, overwrite bool) processors. func (af *addFields) Run(event *beat.Event) (*beat.Event, error) { fields := af.fields - if af.shared { + if af.shared || event.Fields == nil { fields = fields.Clone() } - if af.overwrite { + if event.Fields == nil { + event.Fields = fields + } else if af.overwrite { event.Fields.DeepUpdate(fields) } else { event.Fields.DeepUpdateNoOverwrite(fields) diff --git a/libbeat/processors/actions/add_fields_test.go b/libbeat/processors/actions/add_fields_test.go index a0b7b1d37dc8..41a0e75d5c9c 100644 --- a/libbeat/processors/actions/add_fields_test.go +++ b/libbeat/processors/actions/add_fields_test.go @@ -113,5 +113,12 @@ func TestAddFields(t *testing.T) { `{add_fields: {target: "", fields: {a.change: b}}}`, ), }, + "add fields to nil event": { + event: nil, + want: common.MapStr{ + "fields": common.MapStr{"field": "test"}, + }, + cfg: single(`{add_fields: {fields: {field: test}}}`), + }, }) } diff --git a/libbeat/processors/actions/common_test.go b/libbeat/processors/actions/common_test.go index 4c4a294970b9..f733c90450a0 100644 --- a/libbeat/processors/actions/common_test.go +++ b/libbeat/processors/actions/common_test.go @@ -50,7 +50,10 @@ func testProcessors(t *testing.T, cases map[string]testCase) { } } - current := &beat.Event{Fields: test.event.Clone()} + current := &beat.Event{} + if test.event != nil { + current.Fields = test.event.Clone() + } for i, processor := range ps { var err error current, err = processor.Run(current) diff --git a/libbeat/processors/add_docker_metadata/add_docker_metadata.go b/libbeat/processors/add_docker_metadata/add_docker_metadata.go index 1756dfcfe311..ddea3c85b29c 100644 --- a/libbeat/processors/add_docker_metadata/add_docker_metadata.go +++ b/libbeat/processors/add_docker_metadata/add_docker_metadata.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_docker_metadata diff --git a/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go b/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go index 91d3315a401c..95fa68e3023f 100644 --- a/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go +++ b/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (linux || darwin || windows) && integration // +build linux darwin windows // +build integration diff --git a/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go b/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go index 625d5a6ec128..eeb41129cfe0 100644 --- a/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go +++ b/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (linux || darwin || windows) && !integration // +build linux darwin windows // +build !integration diff --git a/libbeat/processors/add_docker_metadata/config.go b/libbeat/processors/add_docker_metadata/config.go index 89e97fa9af42..a9fc1bc255fe 100644 --- a/libbeat/processors/add_docker_metadata/config.go +++ b/libbeat/processors/add_docker_metadata/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_docker_metadata diff --git a/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml b/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml index 2686e5458261..8a1611ff65a6 100644 --- a/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml +++ b/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml @@ -24,9 +24,28 @@ Kubernetes Pod IP - name: namespace - type: keyword - description: > - Kubernetes namespace + type: group + fields: + - name: name + type: keyword + description: > + Kubernetes namespace name + - name: uuid + type: keyword + description: > + Kubernetes namespace uuid + - name: labels.* + type: object + object_type: keyword + object_type_mapping_type: "*" + description: > + Kubernetes namespace labels map + - name: annotations.* + type: object + object_type: keyword + object_type_mapping_type: "*" + description: > + Kubernetes namespace annotations map - name: node.name type: keyword diff --git a/libbeat/processors/add_kubernetes_metadata/cache.go b/libbeat/processors/add_kubernetes_metadata/cache.go index 5de52efdc1b4..95e6fd19b24d 100644 --- a/libbeat/processors/add_kubernetes_metadata/cache.go +++ b/libbeat/processors/add_kubernetes_metadata/cache.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_kubernetes_metadata diff --git a/libbeat/processors/add_kubernetes_metadata/indexers_test.go b/libbeat/processors/add_kubernetes_metadata/indexers_test.go index eb17833dea4e..a28775641fdc 100644 --- a/libbeat/processors/add_kubernetes_metadata/indexers_test.go +++ b/libbeat/processors/add_kubernetes_metadata/indexers_test.go @@ -73,7 +73,9 @@ func TestPodIndexer(t *testing.T) { "labels": common.MapStr{ "labelkey": "labelvalue", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, @@ -125,7 +127,9 @@ func TestPodUIDIndexer(t *testing.T) { "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", "ip": "127.0.0.5", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, @@ -183,7 +187,9 @@ func TestContainerIndexer(t *testing.T) { "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", "ip": "127.0.0.5", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, @@ -431,7 +437,9 @@ func TestIpPortIndexer(t *testing.T) { "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", "ip": "1.2.3.4", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, diff --git a/libbeat/processors/add_kubernetes_metadata/kubernetes.go b/libbeat/processors/add_kubernetes_metadata/kubernetes.go index 5fc0de08171b..2f68d6cb044a 100644 --- a/libbeat/processors/add_kubernetes_metadata/kubernetes.go +++ b/libbeat/processors/add_kubernetes_metadata/kubernetes.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_kubernetes_metadata diff --git a/libbeat/processors/add_process_metadata/gosigar_provider.go b/libbeat/processors/add_process_metadata/gosigar_provider.go index 5a98ea7ec255..38fd56b79c48 100644 --- a/libbeat/processors/add_process_metadata/gosigar_provider.go +++ b/libbeat/processors/add_process_metadata/gosigar_provider.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package add_process_metadata diff --git a/libbeat/processors/decode_xml_wineventlog/decoder.go b/libbeat/processors/decode_xml_wineventlog/decoder.go index c1b7843b18d6..51ad30d2b248 100644 --- a/libbeat/processors/decode_xml_wineventlog/decoder.go +++ b/libbeat/processors/decode_xml_wineventlog/decoder.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package decode_xml_wineventlog diff --git a/libbeat/processors/decode_xml_wineventlog/decoder_windows.go b/libbeat/processors/decode_xml_wineventlog/decoder_windows.go index 3b3f7bf3599f..0ee26dbf068d 100644 --- a/libbeat/processors/decode_xml_wineventlog/decoder_windows.go +++ b/libbeat/processors/decode_xml_wineventlog/decoder_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package decode_xml_wineventlog diff --git a/libbeat/processors/translate_sid/translatesid.go b/libbeat/processors/translate_sid/translatesid.go index 5a7cfcf5fb7a..ece511cb24bf 100644 --- a/libbeat/processors/translate_sid/translatesid.go +++ b/libbeat/processors/translate_sid/translatesid.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package translate_sid diff --git a/libbeat/processors/translate_sid/translatesid_test.go b/libbeat/processors/translate_sid/translatesid_test.go index bd9ba9e14045..267e726250d7 100644 --- a/libbeat/processors/translate_sid/translatesid_test.go +++ b/libbeat/processors/translate_sid/translatesid_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package translate_sid diff --git a/libbeat/publisher/pipeline/stress/stress_test.go b/libbeat/publisher/pipeline/stress/stress_test.go index 04f39e49afda..b12af68681f8 100644 --- a/libbeat/publisher/pipeline/stress/stress_test.go +++ b/libbeat/publisher/pipeline/stress/stress_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build stresstest // +build stresstest package stress_test diff --git a/libbeat/reader/multiline/multiline_test.go b/libbeat/reader/multiline/multiline_test.go index 93d36151fa7c..e448b9c64a03 100644 --- a/libbeat/reader/multiline/multiline_test.go +++ b/libbeat/reader/multiline/multiline_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package multiline diff --git a/libbeat/reader/readfile/encoding/utf16_test.go b/libbeat/reader/readfile/encoding/utf16_test.go index e38fa7b58513..848d83e4a6bd 100644 --- a/libbeat/reader/readfile/encoding/utf16_test.go +++ b/libbeat/reader/readfile/encoding/utf16_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package encoding diff --git a/libbeat/reader/readfile/limit_test.go b/libbeat/reader/readfile/limit_test.go index 086394959521..4acbb58324d9 100644 --- a/libbeat/reader/readfile/limit_test.go +++ b/libbeat/reader/readfile/limit_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package readfile diff --git a/libbeat/reader/readfile/line_test.go b/libbeat/reader/readfile/line_test.go index 4f20e4de1610..e198a7a342ef 100644 --- a/libbeat/reader/readfile/line_test.go +++ b/libbeat/reader/readfile/line_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package readfile diff --git a/libbeat/reader/readfile/strip_newline_test.go b/libbeat/reader/readfile/strip_newline_test.go index 673fceb8c7f2..3b3a7cd853df 100644 --- a/libbeat/reader/readfile/strip_newline_test.go +++ b/libbeat/reader/readfile/strip_newline_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package readfile diff --git a/libbeat/service/service_unix.go b/libbeat/service/service_unix.go index 68851d7e54f3..245e4cab1130 100644 --- a/libbeat/service/service_unix.go +++ b/libbeat/service/service_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package service diff --git a/libbeat/statestore/backend/memlog/util_other.go b/libbeat/statestore/backend/memlog/util_other.go index f975924853a5..48049bfe5077 100644 --- a/libbeat/statestore/backend/memlog/util_other.go +++ b/libbeat/statestore/backend/memlog/util_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || dragonfly || freebsd || netbsd || openbsd || solaris // +build linux dragonfly freebsd netbsd openbsd solaris package memlog diff --git a/libbeat/template/load_integration_test.go b/libbeat/template/load_integration_test.go index 186c0070c5db..371991810e47 100644 --- a/libbeat/template/load_integration_test.go +++ b/libbeat/template/load_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package template diff --git a/libbeat/template/template_test.go b/libbeat/template/template_test.go index d307d17f1fe4..b969c4da6707 100644 --- a/libbeat/template/template_test.go +++ b/libbeat/template/template_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package template diff --git a/magefile.go b/magefile.go index 75c6d60faef6..70b9f6cfecfd 100644 --- a/magefile.go +++ b/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/metricbeat/Dockerfile b/metricbeat/Dockerfile index 20bbbbbe526d..6ae72a605acb 100644 --- a/metricbeat/Dockerfile +++ b/metricbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt update \ diff --git a/metricbeat/docs/fields.asciidoc b/metricbeat/docs/fields.asciidoc index 63346f9b198a..05d1111c9d64 100644 --- a/metricbeat/docs/fields.asciidoc +++ b/metricbeat/docs/fields.asciidoc @@ -40127,16 +40127,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/metricbeat/helper/dialer/dialer_posix.go b/metricbeat/helper/dialer/dialer_posix.go index 400249a7b60d..37c1a1af85ca 100644 --- a/metricbeat/helper/dialer/dialer_posix.go +++ b/metricbeat/helper/dialer/dialer_posix.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !windows +//go:build !windows +// +build !windows package dialer diff --git a/metricbeat/helper/dialer/dialer_windows.go b/metricbeat/helper/dialer/dialer_windows.go index 35f88c5bcfc8..95c72cefaad8 100644 --- a/metricbeat/helper/dialer/dialer_windows.go +++ b/metricbeat/helper/dialer/dialer_windows.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package dialer diff --git a/metricbeat/helper/http_windows_test.go b/metricbeat/helper/http_windows_test.go index 2f7f47a5085b..57872048f95f 100644 --- a/metricbeat/helper/http_windows_test.go +++ b/metricbeat/helper/http_windows_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package helper diff --git a/metricbeat/helper/server/http/http_test.go b/metricbeat/helper/server/http/http_test.go index 7b7a0a2c7f3c..453e1fea4861 100644 --- a/metricbeat/helper/server/http/http_test.go +++ b/metricbeat/helper/server/http/http_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package http diff --git a/metricbeat/helper/server/tcp/tcp_test.go b/metricbeat/helper/server/tcp/tcp_test.go index 637dba54159e..49eef6cfe87e 100644 --- a/metricbeat/helper/server/tcp/tcp_test.go +++ b/metricbeat/helper/server/tcp/tcp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tcp diff --git a/metricbeat/helper/server/udp/udp_test.go b/metricbeat/helper/server/udp/udp_test.go index 2ead3294237f..559ec6520ece 100644 --- a/metricbeat/helper/server/udp/udp_test.go +++ b/metricbeat/helper/server/udp/udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package udp diff --git a/metricbeat/helper/socket/netlink.go b/metricbeat/helper/socket/netlink.go index 130c147a49c4..90597909c7a0 100644 --- a/metricbeat/helper/socket/netlink.go +++ b/metricbeat/helper/socket/netlink.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/helper/socket/ptable.go b/metricbeat/helper/socket/ptable.go index 37ad99b79c51..1aea516b2351 100644 --- a/metricbeat/helper/socket/ptable.go +++ b/metricbeat/helper/socket/ptable.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package socket diff --git a/metricbeat/helper/socket/ptable_linux.go b/metricbeat/helper/socket/ptable_linux.go index f08e9fe61440..af248dfd7fbf 100644 --- a/metricbeat/helper/socket/ptable_linux.go +++ b/metricbeat/helper/socket/ptable_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/helper/socket/ptable_other.go b/metricbeat/helper/socket/ptable_other.go index 447ba24448c0..c74f0c0b7ea2 100644 --- a/metricbeat/helper/socket/ptable_other.go +++ b/metricbeat/helper/socket/ptable_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package socket diff --git a/metricbeat/helper/windows/pdh/defs_pdh_windows.go b/metricbeat/helper/windows/pdh/defs_pdh_windows.go index bcc62c4ffd1d..b98c4247e03b 100644 --- a/metricbeat/helper/windows/pdh/defs_pdh_windows.go +++ b/metricbeat/helper/windows/pdh/defs_pdh_windows.go @@ -18,6 +18,7 @@ // go run mkpdh_defs.go // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT +//go:build ignore // +build ignore package pdh diff --git a/metricbeat/helper/windows/pdh/mkpdh_defs.go b/metricbeat/helper/windows/pdh/mkpdh_defs.go index fd71b98bb27f..d7cdebf117ea 100644 --- a/metricbeat/helper/windows/pdh/mkpdh_defs.go +++ b/metricbeat/helper/windows/pdh/mkpdh_defs.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package main diff --git a/metricbeat/helper/windows/pdh/pdh_query_windows.go b/metricbeat/helper/windows/pdh/pdh_query_windows.go index aa14553f7ddc..6d0c3ebc9072 100644 --- a/metricbeat/helper/windows/pdh/pdh_query_windows.go +++ b/metricbeat/helper/windows/pdh/pdh_query_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package pdh diff --git a/metricbeat/helper/windows/pdh/pdh_windows.go b/metricbeat/helper/windows/pdh/pdh_windows.go index 52b7c9d2d3ed..28c2e0224afe 100644 --- a/metricbeat/helper/windows/pdh/pdh_windows.go +++ b/metricbeat/helper/windows/pdh/pdh_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package pdh diff --git a/metricbeat/helper/windows/run.go b/metricbeat/helper/windows/run.go index b240d5ec4793..0a442267ec99 100644 --- a/metricbeat/helper/windows/run.go +++ b/metricbeat/helper/windows/run.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore // This is a simple wrapper to set the GOARCH environment variable, execute the diff --git a/metricbeat/include/fields/fields.go b/metricbeat/include/fields/fields.go index 5bf3b244c5d7..4652406599f8 100644 --- a/metricbeat/include/fields/fields.go +++ b/metricbeat/include/fields/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/metricbeat/internal/metrics/cpu/metrics_openbsd.go b/metricbeat/internal/metrics/cpu/metrics_openbsd.go index 5768008a3c6d..b0d386bc3fe2 100644 --- a/metricbeat/internal/metrics/cpu/metrics_openbsd.go +++ b/metricbeat/internal/metrics/cpu/metrics_openbsd.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build openbsd // +build openbsd package cpu diff --git a/metricbeat/internal/metrics/cpu/metrics_procfs_common.go b/metricbeat/internal/metrics/cpu/metrics_procfs_common.go index 5f368f9c7027..3d5b36b5d742 100644 --- a/metricbeat/internal/metrics/cpu/metrics_procfs_common.go +++ b/metricbeat/internal/metrics/cpu/metrics_procfs_common.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build freebsd || linux // +build freebsd linux package cpu diff --git a/metricbeat/internal/metrics/memory/memory_test.go b/metricbeat/internal/metrics/memory/memory_test.go index fac1232e2ca6..bb350a29678b 100644 --- a/metricbeat/internal/metrics/memory/memory_test.go +++ b/metricbeat/internal/metrics/memory/memory_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration && (darwin || freebsd || linux || openbsd || windows) // +build !integration // +build darwin freebsd linux openbsd windows diff --git a/metricbeat/magefile.go b/metricbeat/magefile.go index f35d81009e43..f280bf6741f5 100644 --- a/metricbeat/magefile.go +++ b/metricbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/metricbeat/mb/event_test.go b/metricbeat/mb/event_test.go index 50d6857c7774..89cd8ac5a1b6 100644 --- a/metricbeat/mb/event_test.go +++ b/metricbeat/mb/event_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/lightmodules_test.go b/metricbeat/mb/lightmodules_test.go index 389cc2433c6b..f74764b7423e 100644 --- a/metricbeat/mb/lightmodules_test.go +++ b/metricbeat/mb/lightmodules_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/mb_test.go b/metricbeat/mb/mb_test.go index f0dedec348cd..a03a931bf600 100644 --- a/metricbeat/mb/mb_test.go +++ b/metricbeat/mb/mb_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/module/example_test.go b/metricbeat/mb/module/example_test.go index f07b5edae562..94a014f008c2 100644 --- a/metricbeat/mb/module/example_test.go +++ b/metricbeat/mb/module/example_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package module_test diff --git a/metricbeat/mb/module/runner_test.go b/metricbeat/mb/module/runner_test.go index a6396f63ff5b..f9e56398d0d6 100644 --- a/metricbeat/mb/module/runner_test.go +++ b/metricbeat/mb/module/runner_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package module_test diff --git a/metricbeat/mb/module/wrapper_test.go b/metricbeat/mb/module/wrapper_test.go index 8fcc0230bc9b..130ddb9e2499 100644 --- a/metricbeat/mb/module/wrapper_test.go +++ b/metricbeat/mb/module/wrapper_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package module_test diff --git a/metricbeat/mb/registry_test.go b/metricbeat/mb/registry_test.go index 98ed4ce86058..a8da638faa70 100644 --- a/metricbeat/mb/registry_test.go +++ b/metricbeat/mb/registry_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/testing/data/data_test.go b/metricbeat/mb/testing/data/data_test.go index b81b81426764..36fe1b93a5de 100644 --- a/metricbeat/mb/testing/data/data_test.go +++ b/metricbeat/mb/testing/data/data_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !windows && !386 // +build !windows,!386 package data diff --git a/metricbeat/mb/testing/lightmodules_test.go b/metricbeat/mb/testing/lightmodules_test.go index a20f220acc73..b07cedefc639 100644 --- a/metricbeat/mb/testing/lightmodules_test.go +++ b/metricbeat/mb/testing/lightmodules_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package testing diff --git a/metricbeat/module/aerospike/namespace/namespace_integration_test.go b/metricbeat/module/aerospike/namespace/namespace_integration_test.go index 547a49986a60..dc921909ee0c 100644 --- a/metricbeat/module/aerospike/namespace/namespace_integration_test.go +++ b/metricbeat/module/aerospike/namespace/namespace_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package namespace diff --git a/metricbeat/module/apache/status/status_integration_test.go b/metricbeat/module/apache/status/status_integration_test.go index b441f63e351e..4a6ac7245ef7 100644 --- a/metricbeat/module/apache/status/status_integration_test.go +++ b/metricbeat/module/apache/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/apache/status/status_test.go b/metricbeat/module/apache/status/status_test.go index 464defd46234..41eef7d2690b 100644 --- a/metricbeat/module/apache/status/status_test.go +++ b/metricbeat/module/apache/status/status_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package status diff --git a/metricbeat/module/beat/beat_integration_test.go b/metricbeat/module/beat/beat_integration_test.go index d96bba4be0f2..d14dbdefb5ed 100644 --- a/metricbeat/module/beat/beat_integration_test.go +++ b/metricbeat/module/beat/beat_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package beat_test diff --git a/metricbeat/module/beat/state/data_test.go b/metricbeat/module/beat/state/data_test.go index 606853c02065..74c581e3e899 100644 --- a/metricbeat/module/beat/state/data_test.go +++ b/metricbeat/module/beat/state/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state diff --git a/metricbeat/module/beat/stats/data_test.go b/metricbeat/module/beat/stats/data_test.go index 2a2feb408a45..24b97dc4d9fb 100644 --- a/metricbeat/module/beat/stats/data_test.go +++ b/metricbeat/module/beat/stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stats diff --git a/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go b/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go index d8ac306bf02d..47a2cffe9fb6 100644 --- a/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go +++ b/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package cluster_disk diff --git a/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go b/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go index 3546f8679536..cf4401f3cd8b 100644 --- a/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go +++ b/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package cluster_health diff --git a/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go b/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go index 72a07943f238..c1d09d89415c 100644 --- a/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go +++ b/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package cluster_status diff --git a/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go b/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go index bb7f21f4d708..b5086ce3a34d 100644 --- a/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go +++ b/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_cluster_disk diff --git a/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go b/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go index 3ab6a31574bf..400ec2688836 100644 --- a/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go +++ b/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_cluster_health diff --git a/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go b/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go index a187bfefe9fa..bec24da08417 100644 --- a/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go +++ b/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_osd_perf diff --git a/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go b/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go index 3dcfb120442a..9cd1d031c6ff 100644 --- a/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go +++ b/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_osd_pool_stats diff --git a/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go b/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go index 3ecab4bdb456..5cff01177930 100644 --- a/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go +++ b/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_osd_tree diff --git a/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go b/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go index e1e625521b84..3518e9b06947 100644 --- a/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go +++ b/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_pool_disk diff --git a/metricbeat/module/ceph/osd_df/osd_df_integration_test.go b/metricbeat/module/ceph/osd_df/osd_df_integration_test.go index 6735749bd70d..f4c0d77b1eec 100644 --- a/metricbeat/module/ceph/osd_df/osd_df_integration_test.go +++ b/metricbeat/module/ceph/osd_df/osd_df_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package osd_df diff --git a/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go b/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go index 69d7e3ed7e3d..afdd52ab0772 100644 --- a/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go +++ b/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package osd_tree diff --git a/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go b/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go index 002acbf0c6a6..6f9bd2320b5e 100644 --- a/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go +++ b/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package pool_disk diff --git a/metricbeat/module/consul/agent/agent_integration_test.go b/metricbeat/module/consul/agent/agent_integration_test.go index e4e4a585e300..82721f5df16d 100644 --- a/metricbeat/module/consul/agent/agent_integration_test.go +++ b/metricbeat/module/consul/agent/agent_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package agent diff --git a/metricbeat/module/consul/agent/agent_test.go b/metricbeat/module/consul/agent/agent_test.go index 8e47bd0b9cd6..10d7933d1218 100644 --- a/metricbeat/module/consul/agent/agent_test.go +++ b/metricbeat/module/consul/agent/agent_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package agent diff --git a/metricbeat/module/consul/agent/data_integration_test.go b/metricbeat/module/consul/agent/data_integration_test.go index b93677235c7b..0f6c71557d61 100644 --- a/metricbeat/module/consul/agent/data_integration_test.go +++ b/metricbeat/module/consul/agent/data_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package agent diff --git a/metricbeat/module/couchbase/bucket/bucket_integration_test.go b/metricbeat/module/couchbase/bucket/bucket_integration_test.go index 4311b07f06b5..8782b0688aba 100644 --- a/metricbeat/module/couchbase/bucket/bucket_integration_test.go +++ b/metricbeat/module/couchbase/bucket/bucket_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package bucket diff --git a/metricbeat/module/couchbase/bucket/bucket_test.go b/metricbeat/module/couchbase/bucket/bucket_test.go index 0d39b4bb5fe7..b90dcb02bf02 100644 --- a/metricbeat/module/couchbase/bucket/bucket_test.go +++ b/metricbeat/module/couchbase/bucket/bucket_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package bucket diff --git a/metricbeat/module/couchbase/cluster/cluster_integration_test.go b/metricbeat/module/couchbase/cluster/cluster_integration_test.go index 11b136f0bb35..0cdd158a844e 100644 --- a/metricbeat/module/couchbase/cluster/cluster_integration_test.go +++ b/metricbeat/module/couchbase/cluster/cluster_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package cluster diff --git a/metricbeat/module/couchbase/cluster/cluster_test.go b/metricbeat/module/couchbase/cluster/cluster_test.go index 8a7c6f5338cf..98c1350563d7 100644 --- a/metricbeat/module/couchbase/cluster/cluster_test.go +++ b/metricbeat/module/couchbase/cluster/cluster_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package cluster diff --git a/metricbeat/module/couchbase/node/node_integration_test.go b/metricbeat/module/couchbase/node/node_integration_test.go index 63c47e1c565d..753045f4026d 100644 --- a/metricbeat/module/couchbase/node/node_integration_test.go +++ b/metricbeat/module/couchbase/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package node diff --git a/metricbeat/module/couchbase/node/node_test.go b/metricbeat/module/couchbase/node/node_test.go index b99a2c0b76fd..7972c6f35e9a 100644 --- a/metricbeat/module/couchbase/node/node_test.go +++ b/metricbeat/module/couchbase/node/node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/couchdb/server/server_integration_test.go b/metricbeat/module/couchdb/server/server_integration_test.go index c3fc3976e969..668fbd996aa4 100644 --- a/metricbeat/module/couchdb/server/server_integration_test.go +++ b/metricbeat/module/couchdb/server/server_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package server diff --git a/metricbeat/module/docker/container/container.go b/metricbeat/module/docker/container/container.go index 04c4f123b799..37a5e03f525d 100644 --- a/metricbeat/module/docker/container/container.go +++ b/metricbeat/module/docker/container/container.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package container diff --git a/metricbeat/module/docker/container/container_integration_test.go b/metricbeat/module/docker/container/container_integration_test.go index 47b9dff36f63..1ca5aeb15e61 100644 --- a/metricbeat/module/docker/container/container_integration_test.go +++ b/metricbeat/module/docker/container/container_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package container diff --git a/metricbeat/module/docker/cpu/cpu.go b/metricbeat/module/docker/cpu/cpu.go index 0f13fab22484..07c31c63d0c5 100644 --- a/metricbeat/module/docker/cpu/cpu.go +++ b/metricbeat/module/docker/cpu/cpu.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package cpu diff --git a/metricbeat/module/docker/cpu/cpu_integration_test.go b/metricbeat/module/docker/cpu/cpu_integration_test.go index 7ef25eb1a4b4..531f43558175 100644 --- a/metricbeat/module/docker/cpu/cpu_integration_test.go +++ b/metricbeat/module/docker/cpu/cpu_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package cpu diff --git a/metricbeat/module/docker/diskio/diskio.go b/metricbeat/module/docker/diskio/diskio.go index 6106c52322ec..0d59ae91f781 100644 --- a/metricbeat/module/docker/diskio/diskio.go +++ b/metricbeat/module/docker/diskio/diskio.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package diskio diff --git a/metricbeat/module/docker/diskio/diskio_integration_test.go b/metricbeat/module/docker/diskio/diskio_integration_test.go index 0c5cd6a27c6a..9fa872becd18 100644 --- a/metricbeat/module/docker/diskio/diskio_integration_test.go +++ b/metricbeat/module/docker/diskio/diskio_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package diskio diff --git a/metricbeat/module/docker/docker.go b/metricbeat/module/docker/docker.go index b4a7b91a1cf3..2f12650e5879 100644 --- a/metricbeat/module/docker/docker.go +++ b/metricbeat/module/docker/docker.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/metricbeat/module/docker/event/event.go b/metricbeat/module/docker/event/event.go index ad9421cb8f06..b752666db9e2 100644 --- a/metricbeat/module/docker/event/event.go +++ b/metricbeat/module/docker/event/event.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package event diff --git a/metricbeat/module/docker/event/event_integration_test.go b/metricbeat/module/docker/event/event_integration_test.go index 5d4b7ce79893..27b4927f5f08 100644 --- a/metricbeat/module/docker/event/event_integration_test.go +++ b/metricbeat/module/docker/event/event_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package event diff --git a/metricbeat/module/docker/healthcheck/healthcheck.go b/metricbeat/module/docker/healthcheck/healthcheck.go index 1033af8d692f..82860cf6009e 100644 --- a/metricbeat/module/docker/healthcheck/healthcheck.go +++ b/metricbeat/module/docker/healthcheck/healthcheck.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package healthcheck diff --git a/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go b/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go index 2f0012ef5e48..c1240bbb67df 100644 --- a/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go +++ b/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package healthcheck diff --git a/metricbeat/module/docker/image/image_integration_test.go b/metricbeat/module/docker/image/image_integration_test.go index 1dd56b6d177c..181bb6fcc159 100644 --- a/metricbeat/module/docker/image/image_integration_test.go +++ b/metricbeat/module/docker/image/image_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package image diff --git a/metricbeat/module/docker/info/info_integration_test.go b/metricbeat/module/docker/info/info_integration_test.go index 3ec84b09128c..1b3b35e6bba5 100644 --- a/metricbeat/module/docker/info/info_integration_test.go +++ b/metricbeat/module/docker/info/info_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package info diff --git a/metricbeat/module/docker/memory/memory.go b/metricbeat/module/docker/memory/memory.go index 697dc143eb94..94f1c6b68af3 100644 --- a/metricbeat/module/docker/memory/memory.go +++ b/metricbeat/module/docker/memory/memory.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package memory diff --git a/metricbeat/module/docker/memory/memory_integration_test.go b/metricbeat/module/docker/memory/memory_integration_test.go index 6d21e07eb728..fab2f5558d1b 100644 --- a/metricbeat/module/docker/memory/memory_integration_test.go +++ b/metricbeat/module/docker/memory/memory_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package memory diff --git a/metricbeat/module/docker/network/network.go b/metricbeat/module/docker/network/network.go index 04e67c954129..0659594439fd 100644 --- a/metricbeat/module/docker/network/network.go +++ b/metricbeat/module/docker/network/network.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package network diff --git a/metricbeat/module/docker/network/network_integration_test.go b/metricbeat/module/docker/network/network_integration_test.go index 418d057e247a..1a14b2d6137c 100644 --- a/metricbeat/module/docker/network/network_integration_test.go +++ b/metricbeat/module/docker/network/network_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package network diff --git a/metricbeat/module/docker/network_summary/config.go b/metricbeat/module/docker/network_summary/config.go index 62e355113b6a..56d9c04376c6 100644 --- a/metricbeat/module/docker/network_summary/config.go +++ b/metricbeat/module/docker/network_summary/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package network_summary diff --git a/metricbeat/module/docker/network_summary/helper.go b/metricbeat/module/docker/network_summary/helper.go index adb0fdcc75cb..a314e7c8f643 100644 --- a/metricbeat/module/docker/network_summary/helper.go +++ b/metricbeat/module/docker/network_summary/helper.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package network_summary diff --git a/metricbeat/module/docker/network_summary/network_summary.go b/metricbeat/module/docker/network_summary/network_summary.go index 8ed3d4c87ef5..c437b4e12f43 100644 --- a/metricbeat/module/docker/network_summary/network_summary.go +++ b/metricbeat/module/docker/network_summary/network_summary.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package network_summary diff --git a/metricbeat/module/docker/network_summary/network_summary_test.go b/metricbeat/module/docker/network_summary/network_summary_test.go index fdf6d100f727..59266bf9666e 100644 --- a/metricbeat/module/docker/network_summary/network_summary_test.go +++ b/metricbeat/module/docker/network_summary/network_summary_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration || linux // +build integration linux package network_summary diff --git a/metricbeat/module/dropwizard/collector/collector_integration_test.go b/metricbeat/module/dropwizard/collector/collector_integration_test.go index 470cabd18e83..2526446b0eb1 100644 --- a/metricbeat/module/dropwizard/collector/collector_integration_test.go +++ b/metricbeat/module/dropwizard/collector/collector_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package collector diff --git a/metricbeat/module/dropwizard/collector/collector_test.go b/metricbeat/module/dropwizard/collector/collector_test.go index 181b6e0812e0..a488d94998bf 100644 --- a/metricbeat/module/dropwizard/collector/collector_test.go +++ b/metricbeat/module/dropwizard/collector/collector_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collector diff --git a/metricbeat/module/elasticsearch/ccr/data_test.go b/metricbeat/module/elasticsearch/ccr/data_test.go index 155d4a6fc017..9557e772ee45 100644 --- a/metricbeat/module/elasticsearch/ccr/data_test.go +++ b/metricbeat/module/elasticsearch/ccr/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package ccr diff --git a/metricbeat/module/elasticsearch/cluster_stats/data_test.go b/metricbeat/module/elasticsearch/cluster_stats/data_test.go index 4e2c24f29536..a603af03f9ab 100644 --- a/metricbeat/module/elasticsearch/cluster_stats/data_test.go +++ b/metricbeat/module/elasticsearch/cluster_stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package cluster_stats diff --git a/metricbeat/module/elasticsearch/elasticsearch_integration_test.go b/metricbeat/module/elasticsearch/elasticsearch_integration_test.go index 36c4703564fe..ddea977d7ced 100644 --- a/metricbeat/module/elasticsearch/elasticsearch_integration_test.go +++ b/metricbeat/module/elasticsearch/elasticsearch_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package elasticsearch_test diff --git a/metricbeat/module/elasticsearch/enrich/data_test.go b/metricbeat/module/elasticsearch/enrich/data_test.go index 12b6a804685f..b2930c6b79ae 100644 --- a/metricbeat/module/elasticsearch/enrich/data_test.go +++ b/metricbeat/module/elasticsearch/enrich/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package enrich diff --git a/metricbeat/module/elasticsearch/index/data_test.go b/metricbeat/module/elasticsearch/index/data_test.go index 7008e1817129..fe339f395f5f 100644 --- a/metricbeat/module/elasticsearch/index/data_test.go +++ b/metricbeat/module/elasticsearch/index/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package index diff --git a/metricbeat/module/elasticsearch/index_recovery/data_test.go b/metricbeat/module/elasticsearch/index_recovery/data_test.go index 0cfd576237d1..c6039b5559dc 100644 --- a/metricbeat/module/elasticsearch/index_recovery/data_test.go +++ b/metricbeat/module/elasticsearch/index_recovery/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package index_recovery diff --git a/metricbeat/module/elasticsearch/index_summary/data_test.go b/metricbeat/module/elasticsearch/index_summary/data_test.go index c29be3854be2..3383b0a6d760 100644 --- a/metricbeat/module/elasticsearch/index_summary/data_test.go +++ b/metricbeat/module/elasticsearch/index_summary/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package index_summary diff --git a/metricbeat/module/elasticsearch/ml_job/data_test.go b/metricbeat/module/elasticsearch/ml_job/data_test.go index 71ea0205aed7..03ede2a7238c 100644 --- a/metricbeat/module/elasticsearch/ml_job/data_test.go +++ b/metricbeat/module/elasticsearch/ml_job/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package ml_job diff --git a/metricbeat/module/elasticsearch/node/data_test.go b/metricbeat/module/elasticsearch/node/data_test.go index 2d45181d48b4..acc1a409a1d2 100644 --- a/metricbeat/module/elasticsearch/node/data_test.go +++ b/metricbeat/module/elasticsearch/node/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/elasticsearch/node/node_test.go b/metricbeat/module/elasticsearch/node/node_test.go index 0b843fc04778..b378db863a41 100644 --- a/metricbeat/module/elasticsearch/node/node_test.go +++ b/metricbeat/module/elasticsearch/node/node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/elasticsearch/node_stats/data_test.go b/metricbeat/module/elasticsearch/node_stats/data_test.go index a48e3106889c..5c2e8b21d0b5 100644 --- a/metricbeat/module/elasticsearch/node_stats/data_test.go +++ b/metricbeat/module/elasticsearch/node_stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node_stats diff --git a/metricbeat/module/elasticsearch/pending_tasks/data_test.go b/metricbeat/module/elasticsearch/pending_tasks/data_test.go index 2ad0624e0a5d..a1bf1a220d47 100644 --- a/metricbeat/module/elasticsearch/pending_tasks/data_test.go +++ b/metricbeat/module/elasticsearch/pending_tasks/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pending_tasks diff --git a/metricbeat/module/elasticsearch/testing.go b/metricbeat/module/elasticsearch/testing.go index 0fd49e0a262b..f76e95ed0e76 100644 --- a/metricbeat/module/elasticsearch/testing.go +++ b/metricbeat/module/elasticsearch/testing.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package elasticsearch diff --git a/metricbeat/module/envoyproxy/server/server_integration_test.go b/metricbeat/module/envoyproxy/server/server_integration_test.go index 24e331be8c01..12f8b783e86f 100644 --- a/metricbeat/module/envoyproxy/server/server_integration_test.go +++ b/metricbeat/module/envoyproxy/server/server_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package server diff --git a/metricbeat/module/etcd/leader/leader_integration_test.go b/metricbeat/module/etcd/leader/leader_integration_test.go index fb8814410457..11a331405ca6 100644 --- a/metricbeat/module/etcd/leader/leader_integration_test.go +++ b/metricbeat/module/etcd/leader/leader_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package leader diff --git a/metricbeat/module/etcd/metrics/metrics_integration_test.go b/metricbeat/module/etcd/metrics/metrics_integration_test.go index 89167b7c1ed5..a3ec98e0efa6 100644 --- a/metricbeat/module/etcd/metrics/metrics_integration_test.go +++ b/metricbeat/module/etcd/metrics/metrics_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package metrics diff --git a/metricbeat/module/etcd/metrics/metrics_test.go b/metricbeat/module/etcd/metrics/metrics_test.go index c3ce0d490b0f..8186acef8604 100644 --- a/metricbeat/module/etcd/metrics/metrics_test.go +++ b/metricbeat/module/etcd/metrics/metrics_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package metrics diff --git a/metricbeat/module/etcd/self/self_integration_test.go b/metricbeat/module/etcd/self/self_integration_test.go index dfbfff22f154..6c8938dc1026 100644 --- a/metricbeat/module/etcd/self/self_integration_test.go +++ b/metricbeat/module/etcd/self/self_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package self diff --git a/metricbeat/module/etcd/store/store_integration_test.go b/metricbeat/module/etcd/store/store_integration_test.go index ad455c4eafba..0caa466d577e 100644 --- a/metricbeat/module/etcd/store/store_integration_test.go +++ b/metricbeat/module/etcd/store/store_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package store diff --git a/metricbeat/module/golang/expvar/expvar_integration_test.go b/metricbeat/module/golang/expvar/expvar_integration_test.go index 2e722225cbde..a2baddb3208c 100644 --- a/metricbeat/module/golang/expvar/expvar_integration_test.go +++ b/metricbeat/module/golang/expvar/expvar_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package expvar diff --git a/metricbeat/module/golang/heap/heap_integration_test.go b/metricbeat/module/golang/heap/heap_integration_test.go index 8214a11c686e..31a0b7b7491f 100644 --- a/metricbeat/module/golang/heap/heap_integration_test.go +++ b/metricbeat/module/golang/heap/heap_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package heap diff --git a/metricbeat/module/graphite/server/data_test.go b/metricbeat/module/graphite/server/data_test.go index 066b0a1d8685..208d7d30d2cf 100644 --- a/metricbeat/module/graphite/server/data_test.go +++ b/metricbeat/module/graphite/server/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package server diff --git a/metricbeat/module/graphite/server/tree_test.go b/metricbeat/module/graphite/server/tree_test.go index de2c6ebd8378..69d9bc7eee76 100644 --- a/metricbeat/module/graphite/server/tree_test.go +++ b/metricbeat/module/graphite/server/tree_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package server diff --git a/metricbeat/module/haproxy/info/info_integration_test.go b/metricbeat/module/haproxy/info/info_integration_test.go index aaa653e9791a..789ee2738f82 100644 --- a/metricbeat/module/haproxy/info/info_integration_test.go +++ b/metricbeat/module/haproxy/info/info_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package info diff --git a/metricbeat/module/haproxy/stat/stat_integration_test.go b/metricbeat/module/haproxy/stat/stat_integration_test.go index 8edeece69cf7..1573ded90f49 100644 --- a/metricbeat/module/haproxy/stat/stat_integration_test.go +++ b/metricbeat/module/haproxy/stat/stat_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stat diff --git a/metricbeat/module/http/json/json_integration_test.go b/metricbeat/module/http/json/json_integration_test.go index 597dca2c9b6a..86cd6f204bdb 100644 --- a/metricbeat/module/http/json/json_integration_test.go +++ b/metricbeat/module/http/json/json_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package json diff --git a/metricbeat/module/http/json/json_test.go b/metricbeat/module/http/json/json_test.go index c39503e84708..638df7f20e37 100644 --- a/metricbeat/module/http/json/json_test.go +++ b/metricbeat/module/http/json/json_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package json diff --git a/metricbeat/module/jolokia/jmx/jmx_integration_test.go b/metricbeat/module/jolokia/jmx/jmx_integration_test.go index 407ecd9f9700..3829c39022d6 100644 --- a/metricbeat/module/jolokia/jmx/jmx_integration_test.go +++ b/metricbeat/module/jolokia/jmx/jmx_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package jmx diff --git a/metricbeat/module/kafka/broker/broker_integration_test.go b/metricbeat/module/kafka/broker/broker_integration_test.go index ed16252d3d52..eb9710fd7ab6 100644 --- a/metricbeat/module/kafka/broker/broker_integration_test.go +++ b/metricbeat/module/kafka/broker/broker_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package broker diff --git a/metricbeat/module/kafka/consumer/consumer_integration_test.go b/metricbeat/module/kafka/consumer/consumer_integration_test.go index aa4dd6d4dcc6..eb989ccd36b6 100644 --- a/metricbeat/module/kafka/consumer/consumer_integration_test.go +++ b/metricbeat/module/kafka/consumer/consumer_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package consumer diff --git a/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go b/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go index fe9976fe9662..353266b94d72 100644 --- a/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go +++ b/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package consumergroup diff --git a/metricbeat/module/kafka/partition/partition_integration_test.go b/metricbeat/module/kafka/partition/partition_integration_test.go index a78634cb59be..976e5416f003 100644 --- a/metricbeat/module/kafka/partition/partition_integration_test.go +++ b/metricbeat/module/kafka/partition/partition_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package partition diff --git a/metricbeat/module/kafka/producer/producer_integration_test.go b/metricbeat/module/kafka/producer/producer_integration_test.go index b66f58385438..3936f52a28a0 100644 --- a/metricbeat/module/kafka/producer/producer_integration_test.go +++ b/metricbeat/module/kafka/producer/producer_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package producer diff --git a/metricbeat/module/kibana/settings/settings_integration_test.go b/metricbeat/module/kibana/settings/settings_integration_test.go index 0a5753c4c52b..40ee8aa1144f 100644 --- a/metricbeat/module/kibana/settings/settings_integration_test.go +++ b/metricbeat/module/kibana/settings/settings_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package settings diff --git a/metricbeat/module/kibana/settings/settings_test.go b/metricbeat/module/kibana/settings/settings_test.go index 756ef8b59275..63280952312b 100644 --- a/metricbeat/module/kibana/settings/settings_test.go +++ b/metricbeat/module/kibana/settings/settings_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package settings diff --git a/metricbeat/module/kibana/stats/data_test.go b/metricbeat/module/kibana/stats/data_test.go index 98c38c44d3cd..aeda82797878 100644 --- a/metricbeat/module/kibana/stats/data_test.go +++ b/metricbeat/module/kibana/stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stats diff --git a/metricbeat/module/kibana/stats/stats_integration_test.go b/metricbeat/module/kibana/stats/stats_integration_test.go index 80522f0400d0..e9ac99b3170e 100644 --- a/metricbeat/module/kibana/stats/stats_integration_test.go +++ b/metricbeat/module/kibana/stats/stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stats diff --git a/metricbeat/module/kibana/stats/stats_test.go b/metricbeat/module/kibana/stats/stats_test.go index a7b76603352e..9de3a7c8c52c 100644 --- a/metricbeat/module/kibana/stats/stats_test.go +++ b/metricbeat/module/kibana/stats/stats_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stats diff --git a/metricbeat/module/kibana/status/data_test.go b/metricbeat/module/kibana/status/data_test.go index 73cfcfd09106..89cace6d04c4 100644 --- a/metricbeat/module/kibana/status/data_test.go +++ b/metricbeat/module/kibana/status/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package status diff --git a/metricbeat/module/kibana/status/status_integration_test.go b/metricbeat/module/kibana/status/status_integration_test.go index 003dd34f4524..4ae08681bd67 100644 --- a/metricbeat/module/kibana/status/status_integration_test.go +++ b/metricbeat/module/kibana/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/kibana/status/status_test.go b/metricbeat/module/kibana/status/status_test.go index 406619a4ccb2..aea7ecfd9ebb 100644 --- a/metricbeat/module/kibana/status/status_test.go +++ b/metricbeat/module/kibana/status/status_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package status diff --git a/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go b/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go index 807b2c0760ec..1fe4e68a23a8 100644 --- a/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go +++ b/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package apiserver diff --git a/metricbeat/module/kubernetes/apiserver/apiserver_test.go b/metricbeat/module/kubernetes/apiserver/apiserver_test.go index 2674698b212c..674e84c69aca 100644 --- a/metricbeat/module/kubernetes/apiserver/apiserver_test.go +++ b/metricbeat/module/kubernetes/apiserver/apiserver_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package apiserver diff --git a/metricbeat/module/kubernetes/container/container_integration_test.go b/metricbeat/module/kubernetes/container/container_integration_test.go index 18df4cdd2d13..aeb71413da12 100644 --- a/metricbeat/module/kubernetes/container/container_integration_test.go +++ b/metricbeat/module/kubernetes/container/container_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package container diff --git a/metricbeat/module/kubernetes/container/container_test.go b/metricbeat/module/kubernetes/container/container_test.go index 94b98863c31e..300098461699 100644 --- a/metricbeat/module/kubernetes/container/container_test.go +++ b/metricbeat/module/kubernetes/container/container_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package container diff --git a/metricbeat/module/kubernetes/container/data.go b/metricbeat/module/kubernetes/container/data.go index 53a795624d98..78c6d29b83ed 100644 --- a/metricbeat/module/kubernetes/container/data.go +++ b/metricbeat/module/kubernetes/container/data.go @@ -43,7 +43,9 @@ func eventMapping(content []byte, perfMetrics *util.PerfMetricsCache) ([]common. for _, container := range pod.Containers { containerEvent := common.MapStr{ mb.ModuleDataKey: common.MapStr{ - "namespace": pod.PodRef.Namespace, + "namespace": common.MapStr{ + "name": pod.PodRef.Namespace, + }, "node": common.MapStr{ "name": node.NodeName, }, diff --git a/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go b/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go index 285242ebb037..7caff58a918c 100644 --- a/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go +++ b/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package controllermanager diff --git a/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go b/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go index daa65789b756..bce6c10b92b5 100644 --- a/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go +++ b/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package controllermanager diff --git a/metricbeat/module/kubernetes/event/event.go b/metricbeat/module/kubernetes/event/event.go index f4ec9fdf5764..210f65a92f19 100644 --- a/metricbeat/module/kubernetes/event/event.go +++ b/metricbeat/module/kubernetes/event/event.go @@ -126,8 +126,10 @@ func generateMapStrFromEvent(eve *kubernetes.Event, dedotConfig dedotConfig) com "timestamp": common.MapStr{ "created": kubernetes.Time(&eve.ObjectMeta.CreationTimestamp).UTC(), }, + "namespace": common.MapStr{ + "name": eve.ObjectMeta.GetNamespace(), + }, "name": eve.ObjectMeta.GetName(), - "namespace": eve.ObjectMeta.GetNamespace(), "self_link": eve.ObjectMeta.GetSelfLink(), "generate_name": eve.ObjectMeta.GetGenerateName(), "uid": eve.ObjectMeta.GetUID(), diff --git a/metricbeat/module/kubernetes/node/node_integration_test.go b/metricbeat/module/kubernetes/node/node_integration_test.go index 7d1c73bc20ba..d26a712c576a 100644 --- a/metricbeat/module/kubernetes/node/node_integration_test.go +++ b/metricbeat/module/kubernetes/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package node diff --git a/metricbeat/module/kubernetes/node/node_test.go b/metricbeat/module/kubernetes/node/node_test.go index 311078f1a9bd..8c7fcdac4ed1 100644 --- a/metricbeat/module/kubernetes/node/node_test.go +++ b/metricbeat/module/kubernetes/node/node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/kubernetes/pod/data.go b/metricbeat/module/kubernetes/pod/data.go index bb24d31905c9..8e4ffc759eb6 100644 --- a/metricbeat/module/kubernetes/pod/data.go +++ b/metricbeat/module/kubernetes/pod/data.go @@ -59,7 +59,9 @@ func eventMapping(content []byte, perfMetrics *util.PerfMetricsCache) ([]common. podEvent := common.MapStr{ mb.ModuleDataKey: common.MapStr{ - "namespace": pod.PodRef.Namespace, + "namespace": common.MapStr{ + "name": pod.PodRef.Namespace, + }, "node": common.MapStr{ "name": node.NodeName, }, diff --git a/metricbeat/module/kubernetes/pod/pod_integration_test.go b/metricbeat/module/kubernetes/pod/pod_integration_test.go index 9202891f84d6..d8553fb66902 100644 --- a/metricbeat/module/kubernetes/pod/pod_integration_test.go +++ b/metricbeat/module/kubernetes/pod/pod_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package pod diff --git a/metricbeat/module/kubernetes/pod/pod_test.go b/metricbeat/module/kubernetes/pod/pod_test.go index d6333b0776e6..41340e5dede1 100644 --- a/metricbeat/module/kubernetes/pod/pod_test.go +++ b/metricbeat/module/kubernetes/pod/pod_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pod diff --git a/metricbeat/module/kubernetes/proxy/proxy_integration_test.go b/metricbeat/module/kubernetes/proxy/proxy_integration_test.go index d596fb545f86..9443094f74db 100644 --- a/metricbeat/module/kubernetes/proxy/proxy_integration_test.go +++ b/metricbeat/module/kubernetes/proxy/proxy_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package proxy diff --git a/metricbeat/module/kubernetes/proxy/proxy_test.go b/metricbeat/module/kubernetes/proxy/proxy_test.go index 72505ba935bc..aa9f6a5fb5c4 100644 --- a/metricbeat/module/kubernetes/proxy/proxy_test.go +++ b/metricbeat/module/kubernetes/proxy/proxy_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package proxy diff --git a/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go b/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go index 90d986404dcd..0778c7688069 100644 --- a/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go +++ b/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package scheduler diff --git a/metricbeat/module/kubernetes/scheduler/scheduler_test.go b/metricbeat/module/kubernetes/scheduler/scheduler_test.go index 2356ddb8f980..d115ec5715c1 100644 --- a/metricbeat/module/kubernetes/scheduler/scheduler_test.go +++ b/metricbeat/module/kubernetes/scheduler/scheduler_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package scheduler diff --git a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected index 9bfecbe3c398..004b0ee99681 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected @@ -10,7 +10,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -51,30 +53,37 @@ { "RootFields": { "container": { - "id": "e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", + "id": "ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", "image": { - "name": "gcr.io/google_containers/kube-apiserver-amd64:v1.9.7" + "name": "k8s.gcr.io/kube-addon-manager:v8.6" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-apiserver-minikube" + "name": "kube-addon-manager-minikube" } }, "MetricSetFields": { "cpu": { "request": { - "cores": 0.25 + "cores": 0.005 } }, - "id": "docker://e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", - "name": "kube-apiserver", + "id": "docker://ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", + "memory": { + "request": { + "bytes": 52428800 + } + }, + "name": "kube-addon-manager", "status": { "phase": "running", "ready": true, @@ -95,25 +104,32 @@ { "RootFields": { "container": { - "id": "76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", + "id": "e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", "image": { - "name": "gcr.io/google_containers/kube-proxy-amd64:v1.9.7" + "name": "gcr.io/google_containers/kube-apiserver-amd64:v1.9.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-proxy-znhg6" + "name": "kube-apiserver-minikube" } }, "MetricSetFields": { - "id": "docker://76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", - "name": "kube-proxy", + "cpu": { + "request": { + "cores": 0.25 + } + }, + "id": "docker://e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", + "name": "kube-apiserver", "status": { "phase": "running", "ready": true, @@ -134,30 +150,43 @@ { "RootFields": { "container": { - "id": "4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", + "id": "948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", "image": { - "name": "gcr.io/google_containers/kube-controller-manager-amd64:v1.9.7" + "name": "k8s.gcr.io/addon-resizer:1.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-controller-manager-minikube" + "name": "kube-state-metrics-6479d88c5c-5b6cl" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.1 + }, "request": { - "cores": 0.2 + "cores": 0.1 } }, - "id": "docker://4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", - "name": "kube-controller-manager", + "id": "docker://948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", + "memory": { + "limit": { + "bytes": 31457280 + }, + "request": { + "bytes": 31457280 + } + }, + "name": "addon-resizer", "status": { "phase": "running", "ready": true, @@ -178,41 +207,27 @@ { "RootFields": { "container": { - "id": "948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", + "id": "76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", "image": { - "name": "k8s.gcr.io/addon-resizer:1.7" + "name": "gcr.io/google_containers/kube-proxy-amd64:v1.9.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-6479d88c5c-5b6cl" + "name": "kube-proxy-znhg6" } }, "MetricSetFields": { - "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "docker://948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", - "memory": { - "limit": { - "bytes": 31457280 - }, - "request": { - "bytes": 31457280 - } - }, - "name": "addon-resizer", + "id": "docker://76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, @@ -241,7 +256,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -285,7 +302,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -329,25 +348,32 @@ { "RootFields": { "container": { - "id": "6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", + "id": "4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", "image": { - "name": "gcr.io/google_containers/etcd-amd64:3.1.11" + "name": "gcr.io/google_containers/kube-controller-manager-amd64:v1.9.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "etcd-minikube" + "name": "kube-controller-manager-minikube" } }, "MetricSetFields": { - "id": "docker://6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", - "name": "etcd", + "cpu": { + "request": { + "cores": 0.2 + } + }, + "id": "docker://4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", + "name": "kube-controller-manager", "status": { "phase": "running", "ready": true, @@ -368,35 +394,43 @@ { "RootFields": { "container": { - "id": "ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", + "id": "88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", "image": { - "name": "k8s.gcr.io/kube-addon-manager:v8.6" + "name": "quay.io/coreos/kube-state-metrics:v1.3.0" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-addon-manager-minikube" + "name": "kube-state-metrics-6479d88c5c-5b6cl" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.101 + }, "request": { - "cores": 0.005 + "cores": 0.101 } }, - "id": "docker://ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", + "id": "docker://88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", "memory": { + "limit": { + "bytes": 106954752 + }, "request": { - "bytes": 52428800 + "bytes": 106954752 } }, - "name": "kube-addon-manager", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, @@ -417,44 +451,41 @@ { "RootFields": { "container": { - "id": "88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", + "id": "aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", "image": { - "name": "quay.io/coreos/kube-state-metrics:v1.3.0" + "name": "gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-6479d88c5c-5b6cl" + "name": "kube-dns-6f4fd4bdf-wlmht" } }, "MetricSetFields": { "cpu": { - "limit": { - "cores": 0.101 - }, "request": { - "cores": 0.101 + "cores": 0.01 } }, - "id": "docker://88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", + "id": "docker://aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", "memory": { - "limit": { - "bytes": 106954752 - }, "request": { - "bytes": 106954752 + "bytes": 20971520 } }, - "name": "kube-state-metrics", + "name": "sidecar", "status": { "phase": "running", "ready": true, + "reason": "OOMKilled", "restarts": 0 } }, @@ -480,7 +511,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -511,39 +544,30 @@ { "RootFields": { "container": { - "id": "aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", + "id": "6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", "image": { - "name": "gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.7" + "name": "gcr.io/google_containers/etcd-amd64:3.1.11" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-6f4fd4bdf-wlmht" + "name": "etcd-minikube" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.01 - } - }, - "id": "docker://aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", - "memory": { - "request": { - "bytes": 20971520 - } - }, - "name": "sidecar", + "id": "docker://6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", + "name": "etcd", "status": { "phase": "running", "ready": true, - "reason": "OOMKilled", "restarts": 0 } }, @@ -569,7 +593,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, diff --git a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected index 4277911c4b3f..ce83e9114458 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected @@ -2,38 +2,31 @@ { "RootFields": { "container": { - "id": "f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", + "id": "30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", "image": { - "name": "k8s.gcr.io/kube-addon-manager:v9.0.2" + "name": "busybox:latest" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-addon-manager-minikube" + "name": "hello-1578512100-vr7wj" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.005 - } - }, - "id": "docker://f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", - "memory": { - "request": { - "bytes": 52428800 - } - }, - "name": "kube-addon-manager", + "id": "docker://30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", + "name": "hello", "status": { - "phase": "running", - "ready": true, + "phase": "terminated", + "ready": false, + "reason": "Completed", "restarts": 0 } }, @@ -59,7 +52,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -95,25 +90,40 @@ { "RootFields": { "container": { - "id": "c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", + "id": "15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", "image": { - "name": "k8s.gcr.io/kube-proxy:v1.16.2" + "name": "k8s.gcr.io/coredns:1.6.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-proxy-dwg6l" + "name": "coredns-5644d7b6d9-k6wsp" } }, "MetricSetFields": { - "id": "docker://c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", - "name": "kube-proxy", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "docker://15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "coredns", "status": { "phase": "running", "ready": true, @@ -134,30 +144,27 @@ { "RootFields": { "container": { - "id": "465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", + "id": "a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", "image": { - "name": "k8s.gcr.io/kube-controller-manager:v1.16.2" + "name": "k8s.gcr.io/nginx-slim:0.8" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-controller-manager-minikube" + "name": "web-0" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.2 - } - }, - "id": "docker://465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", - "name": "kube-controller-manager", + "id": "docker://a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", + "name": "nginx", "status": { "phase": "running", "ready": true, @@ -178,29 +185,30 @@ { "RootFields": { "container": { - "id": "30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", + "id": "e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", "image": { - "name": "busybox:latest" + "name": "gcr.io/k8s-minikube/storage-provisioner:v1.8.1" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "hello-1578512100-vr7wj" + "name": "storage-provisioner" } }, "MetricSetFields": { - "id": "docker://30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", - "name": "hello", + "id": "docker://e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", + "name": "storage-provisioner", "status": { - "phase": "terminated", - "ready": false, - "reason": "Completed", + "phase": "running", + "ready": true, "restarts": 0 } }, @@ -218,38 +226,37 @@ { "RootFields": { "container": { - "id": "f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", + "id": "f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", "image": { - "name": "k8s.gcr.io/coredns:1.6.2" + "name": "k8s.gcr.io/kube-addon-manager:v9.0.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "coredns-5644d7b6d9-fhwjd" + "name": "kube-addon-manager-minikube" } }, "MetricSetFields": { "cpu": { "request": { - "cores": 0.1 + "cores": 0.005 } }, - "id": "docker://f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", + "id": "docker://f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", "memory": { - "limit": { - "bytes": 178257920 - }, "request": { - "bytes": 73400320 + "bytes": 52428800 } }, - "name": "coredns", + "name": "kube-addon-manager", "status": { "phase": "running", "ready": true, @@ -270,25 +277,27 @@ { "RootFields": { "container": { - "id": "e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", + "id": "669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", "image": { - "name": "gcr.io/k8s-minikube/storage-provisioner:v1.8.1" + "name": "k8s.gcr.io/nginx-slim:0.8" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "storage-provisioner" + "name": "web-1" } }, "MetricSetFields": { - "id": "docker://e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", - "name": "storage-provisioner", + "id": "docker://669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", + "name": "nginx", "status": { "phase": "running", "ready": true, @@ -309,25 +318,32 @@ { "RootFields": { "container": { - "id": "2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", + "id": "cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", "image": { - "name": "quay.io/coreos/kube-state-metrics:v1.8.0" + "name": "k8s.gcr.io/kube-apiserver:v1.16.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-898d4db8d-dqmtg" + "name": "kube-apiserver-minikube" } }, "MetricSetFields": { - "id": "docker://2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", - "name": "kube-state-metrics", + "cpu": { + "request": { + "cores": 0.25 + } + }, + "id": "docker://cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", + "name": "kube-apiserver", "status": { "phase": "running", "ready": true, @@ -348,38 +364,27 @@ { "RootFields": { "container": { - "id": "15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", + "id": "c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", "image": { - "name": "k8s.gcr.io/coredns:1.6.2" + "name": "k8s.gcr.io/kube-proxy:v1.16.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "coredns-5644d7b6d9-k6wsp" + "name": "kube-proxy-dwg6l" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.1 - } - }, - "id": "docker://15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", - "memory": { - "limit": { - "bytes": 178257920 - }, - "request": { - "bytes": 73400320 - } - }, - "name": "coredns", + "id": "docker://c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, @@ -400,25 +405,40 @@ { "RootFields": { "container": { - "id": "669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", + "id": "f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", "image": { - "name": "k8s.gcr.io/nginx-slim:0.8" + "name": "k8s.gcr.io/coredns:1.6.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "web-1" + "name": "coredns-5644d7b6d9-fhwjd" } }, "MetricSetFields": { - "id": "docker://669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", - "name": "nginx", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "docker://f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "coredns", "status": { "phase": "running", "ready": true, @@ -439,30 +459,27 @@ { "RootFields": { "container": { - "id": "cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", + "id": "2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", "image": { - "name": "k8s.gcr.io/kube-apiserver:v1.16.2" + "name": "quay.io/coreos/kube-state-metrics:v1.8.0" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-apiserver-minikube" + "name": "kube-state-metrics-898d4db8d-dqmtg" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.25 - } - }, - "id": "docker://cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", - "name": "kube-apiserver", + "id": "docker://2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, @@ -491,7 +508,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -522,25 +541,32 @@ { "RootFields": { "container": { - "id": "a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", + "id": "465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", "image": { - "name": "k8s.gcr.io/nginx-slim:0.8" + "name": "k8s.gcr.io/kube-controller-manager:v1.16.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "web-0" + "name": "kube-controller-manager-minikube" } }, "MetricSetFields": { - "id": "docker://a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", - "name": "nginx", + "cpu": { + "request": { + "cores": 0.2 + } + }, + "id": "docker://465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", + "name": "kube-controller-manager", "status": { "phase": "running", "ready": true, diff --git a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected index a8f3b293465e..b1824708ae83 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected @@ -2,38 +2,43 @@ { "RootFields": { "container": { - "id": "3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", + "id": "3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", "image": { - "name": "k8s.gcr.io/coredns:1.6.2" + "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" }, "pod": { - "name": "coredns-5644d7b6d9-zgdsx" + "name": "kindnet-tg7tl" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.1 + }, "request": { "cores": 0.1 } }, - "id": "containerd://3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", + "id": "containerd://3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", "memory": { "limit": { - "bytes": 178257920 + "bytes": 52428800 }, "request": { - "bytes": 73400320 + "bytes": 52428800 } }, - "name": "coredns", + "name": "kindnet-cni", "status": { "phase": "running", "ready": true, @@ -54,33 +59,72 @@ { "RootFields": { "container": { - "id": "ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", + "id": "a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", "image": { - "name": "k8s.gcr.io/kube-apiserver:v1.16.15" + "name": "k8s.gcr.io/kube-proxy:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "kube-apiserver-kind-control-plane" + "name": "kube-proxy-cm525" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.25 - } - }, - "id": "containerd://ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", - "name": "kube-apiserver", + "id": "containerd://a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, + "restarts": 4 + } + }, + "Index": "", + "ID": "", + "Namespace": "kubernetes.container", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": { + "container": { + "id": "a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", + "image": { + "name": "docker.io/library/busybox:latest" + }, + "runtime": "containerd" + } + }, + "ModuleFields": { + "namespace": { + "name": "default" + }, + "node": { + "name": "kind-worker" + }, + "pod": { + "name": "hello-zf6gh" + } + }, + "MetricSetFields": { + "id": "containerd://a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", + "name": "hello", + "status": { + "phase": "terminated", + "ready": false, + "reason": "Completed", "restarts": 0 } }, @@ -106,7 +150,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker2" }, @@ -137,25 +183,32 @@ { "RootFields": { "container": { - "id": "8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", + "id": "1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", "image": { - "name": "k8s.gcr.io/kube-proxy:v1.16.15" + "name": "k8s.gcr.io/kube-controller-manager:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" }, "pod": { - "name": "kube-proxy-22znl" + "name": "kube-controller-manager-kind-control-plane" } }, "MetricSetFields": { - "id": "containerd://8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", - "name": "kube-proxy", + "cpu": { + "request": { + "cores": 0.2 + } + }, + "id": "containerd://1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", + "name": "kube-controller-manager", "status": { "phase": "running", "ready": true, @@ -176,29 +229,31 @@ { "RootFields": { "container": { - "id": "02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", + "id": "8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", "image": { - "name": "docker.io/odise/busybox-python:latest" + "name": "k8s.gcr.io/kube-proxy:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" }, "pod": { - "name": "hello-python-566b5479f5-ndwdl" + "name": "kube-proxy-22znl" } }, "MetricSetFields": { - "id": "containerd://02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", - "name": "hello-python", + "id": "containerd://8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, - "restarts": 18 + "restarts": 4 } }, "Index": "", @@ -215,7 +270,7 @@ { "RootFields": { "container": { - "id": "09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", + "id": "9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", "image": { "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" }, @@ -223,12 +278,14 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker" }, "pod": { - "name": "kindnet-kch2v" + "name": "kindnet-9fgst" } }, "MetricSetFields": { @@ -240,7 +297,7 @@ "cores": 0.1 } }, - "id": "containerd://09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", + "id": "containerd://9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", "memory": { "limit": { "bytes": 52428800 @@ -270,34 +327,39 @@ { "RootFields": { "container": { - "id": "cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", + "id": "fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", "image": { - "name": "k8s.gcr.io/kube-scheduler:v1.16.15" + "name": "docker.io/library/redis:5.0.4" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" }, "pod": { - "name": "kube-scheduler-kind-control-plane" + "name": "redis" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.1 + }, "request": { "cores": 0.1 } }, - "id": "containerd://cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", - "name": "kube-scheduler", + "id": "containerd://fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", + "name": "redis", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 1 } }, "Index": "", @@ -314,29 +376,36 @@ { "RootFields": { "container": { - "id": "1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", + "id": "cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", "image": { - "name": "docker.io/rancher/local-path-provisioner:v0.0.14" + "name": "k8s.gcr.io/kube-scheduler:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "local-path-storage", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "local-path-provisioner-5bf465b47d-h8hjn" + "name": "kube-scheduler-kind-control-plane" } }, "MetricSetFields": { - "id": "containerd://1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", - "name": "local-path-provisioner", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "containerd://cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", + "name": "kube-scheduler", "status": { "phase": "running", "ready": true, - "restarts": 8 + "restarts": 4 } }, "Index": "", @@ -353,7 +422,7 @@ { "RootFields": { "container": { - "id": "d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", + "id": "90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", "image": { "name": "docker.elastic.co/beats/metricbeat:7.15.0-SNAPSHOT" }, @@ -361,12 +430,14 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker2" + "name": "kind-worker" }, "pod": { - "name": "metricbeat-55fp7" + "name": "metricbeat-bvr2v" } }, "MetricSetFields": { @@ -375,7 +446,7 @@ "cores": 0.1 } }, - "id": "containerd://d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", + "id": "containerd://90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", "memory": { "limit": { "bytes": 209715200 @@ -413,7 +484,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, @@ -457,37 +530,31 @@ { "RootFields": { "container": { - "id": "fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", + "id": "3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", "image": { - "name": "docker.io/library/redis:5.0.4" + "name": "k8s.gcr.io/etcd:3.3.15-0" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker2" + "name": "kind-control-plane" }, "pod": { - "name": "redis" + "name": "etcd-kind-control-plane" } }, "MetricSetFields": { - "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "containerd://fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", - "name": "redis", + "id": "containerd://3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", + "name": "etcd", "status": { "phase": "running", "ready": true, - "restarts": 1 + "restarts": 0 } }, "Index": "", @@ -504,45 +571,36 @@ { "RootFields": { "container": { - "id": "9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", + "id": "ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", "image": { - "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" + "name": "k8s.gcr.io/kube-apiserver:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" }, "pod": { - "name": "kindnet-9fgst" + "name": "kube-apiserver-kind-control-plane" } }, "MetricSetFields": { "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "containerd://9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", - "memory": { - "limit": { - "bytes": 52428800 - }, "request": { - "bytes": 52428800 + "cores": 0.25 } }, - "name": "kindnet-cni", + "id": "containerd://ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", + "name": "kube-apiserver", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 0 } }, "Index": "", @@ -559,29 +617,44 @@ { "RootFields": { "container": { - "id": "ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", + "id": "3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", "image": { - "name": "k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.1.0" + "name": "k8s.gcr.io/coredns:1.6.2" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" }, "pod": { - "name": "kube-state-metrics-f655d484d-hj69w" + "name": "coredns-5644d7b6d9-zgdsx" } }, "MetricSetFields": { - "id": "containerd://ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", - "name": "kube-state-metrics", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "containerd://3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "coredns", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 4 } }, "Index": "", @@ -598,7 +671,7 @@ { "RootFields": { "container": { - "id": "90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", + "id": "d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", "image": { "name": "docker.elastic.co/beats/metricbeat:7.15.0-SNAPSHOT" }, @@ -606,12 +679,14 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-worker2" }, "pod": { - "name": "metricbeat-bvr2v" + "name": "metricbeat-55fp7" } }, "MetricSetFields": { @@ -620,7 +695,7 @@ "cores": 0.1 } }, - "id": "containerd://90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", + "id": "containerd://d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", "memory": { "limit": { "bytes": 209715200 @@ -650,69 +725,31 @@ { "RootFields": { "container": { - "id": "a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", + "id": "ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", "image": { - "name": "docker.io/library/busybox:latest" + "name": "k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.1.0" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "default", - "node": { - "name": "kind-worker" + "namespace": { + "name": "kube-system" }, - "pod": { - "name": "hello-zf6gh" - } - }, - "MetricSetFields": { - "id": "containerd://a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", - "name": "hello", - "status": { - "phase": "terminated", - "ready": false, - "reason": "Completed", - "restarts": 0 - } - }, - "Index": "", - "ID": "", - "Namespace": "kubernetes.container", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": { - "container": { - "id": "a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", - "image": { - "name": "k8s.gcr.io/kube-proxy:v1.16.15" - }, - "runtime": "containerd" - } - }, - "ModuleFields": { - "namespace": "kube-system", "node": { - "name": "kind-control-plane" + "name": "kind-worker" }, "pod": { - "name": "kube-proxy-cm525" + "name": "kube-state-metrics-f655d484d-hj69w" } }, "MetricSetFields": { - "id": "containerd://a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", - "name": "kube-proxy", + "id": "containerd://ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 2 } }, "Index": "", @@ -729,29 +766,47 @@ { "RootFields": { "container": { - "id": "3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", + "id": "09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", "image": { - "name": "k8s.gcr.io/etcd:3.3.15-0" + "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "etcd-kind-control-plane" + "name": "kindnet-kch2v" } }, "MetricSetFields": { - "id": "containerd://3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", - "name": "etcd", + "cpu": { + "limit": { + "cores": 0.1 + }, + "request": { + "cores": 0.1 + } + }, + "id": "containerd://09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", + "memory": { + "limit": { + "bytes": 52428800 + }, + "request": { + "bytes": 52428800 + } + }, + "name": "kindnet-cni", "status": { "phase": "running", "ready": true, - "restarts": 0 + "restarts": 4 } }, "Index": "", @@ -768,45 +823,31 @@ { "RootFields": { "container": { - "id": "3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", + "id": "02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", "image": { - "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" + "name": "docker.io/odise/busybox-python:latest" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-worker2" + "name": "kind-worker" }, "pod": { - "name": "kindnet-tg7tl" + "name": "hello-python-566b5479f5-ndwdl" } }, "MetricSetFields": { - "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "containerd://3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", - "memory": { - "limit": { - "bytes": 52428800 - }, - "request": { - "bytes": 52428800 - } - }, - "name": "kindnet-cni", + "id": "containerd://02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", + "name": "hello-python", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 18 } }, "Index": "", @@ -823,34 +864,31 @@ { "RootFields": { "container": { - "id": "1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", + "id": "1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", "image": { - "name": "k8s.gcr.io/kube-controller-manager:v1.16.15" + "name": "docker.io/rancher/local-path-provisioner:v0.0.14" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "local-path-storage" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "kube-controller-manager-kind-control-plane" + "name": "local-path-provisioner-5bf465b47d-h8hjn" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.2 - } - }, - "id": "containerd://1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", - "name": "kube-controller-manager", + "id": "containerd://1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", + "name": "local-path-provisioner", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 8 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json b/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json index 91d3176317dc..a38d8487d344 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json @@ -1,9 +1,9 @@ [ { "container": { - "id": "469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", + "id": "52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", "image": { - "name": "gcr.io/kubernetes-helm/tiller:v2.3.1" + "name": "gcr.io/google_containers/exechealthz-amd64:1.2" }, "runtime": "docker" }, @@ -14,20 +14,35 @@ }, "kubernetes": { "container": { - "id": "docker://469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", - "name": "tiller", + "cpu": { + "request": { + "cores": 0.01 + } + }, + "id": "docker://52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", + "memory": { + "limit": { + "bytes": 52428800 + }, + "request": { + "bytes": 52428800 + } + }, + "name": "healthz", "status": { "phase": "running", "ready": true, - "restarts": 1 + "restarts": 2 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "tiller-deploy-3067024529-9lpmb" + "name": "kube-dns-v20-5g5cb" } }, "metricset": { @@ -41,9 +56,9 @@ }, { "container": { - "id": "3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", + "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", "image": { - "name": "gcr.io/google_containers/kubernetes-dashboard-amd64:v1.5.1" + "name": "gcr.io/google_containers/kubedns-amd64:1.9" }, "runtime": "docker" }, @@ -54,20 +69,35 @@ }, "kubernetes": { "container": { - "id": "docker://3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", - "name": "kubernetes-dashboard", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "kubedns", "status": { "phase": "running", "ready": true, "restarts": 2 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kubernetes-dashboard-vw0l6" + "name": "kube-dns-v20-5g5cb" } }, "metricset": { @@ -80,6 +110,13 @@ } }, { + "container": { + "id": "91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", + "image": { + "name": "gcr.io/google-containers/kube-addon-manager:v6.3" + }, + "runtime": "docker" + }, "event": { "dataset": "kubernetes.container", "duration": 115000, @@ -88,26 +125,31 @@ "kubernetes": { "container": { "cpu": { - "limit": { - "cores": 0.2 - }, "request": { - "cores": 0.1 + "cores": 0.005 } }, + "id": "docker://91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", "memory": { - "limit": { - "bytes": 52428800 - }, "request": { - "bytes": 31457280 + "bytes": 52428800 } }, - "name": "kube-state-metrics" + "name": "kube-addon-manager", + "status": { + "phase": "running", + "ready": true, + "restarts": 2 + } + }, + "namespace": { + "name": "kube-system" + }, + "node": { + "name": "minikube" }, - "namespace": "kube-system", "pod": { - "name": "kube-state-metrics-1303537707-mnzbp" + "name": "kube-addon-manager-minikube" } }, "metricset": { @@ -121,9 +163,9 @@ }, { "container": { - "id": "973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", + "id": "3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", "image": { - "name": "gcr.io/google_containers/kube-state-metrics:v0.4.1" + "name": "gcr.io/google_containers/kubernetes-dashboard-amd64:v1.5.1" }, "runtime": "docker" }, @@ -134,36 +176,22 @@ }, "kubernetes": { "container": { - "cpu": { - "limit": { - "cores": 0.2 - }, - "request": { - "cores": 0.1 - } - }, - "id": "docker://973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", - "memory": { - "limit": { - "bytes": 52428800 - }, - "request": { - "bytes": 31457280 - } - }, - "name": "kube-state-metrics", + "id": "docker://3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", + "name": "kubernetes-dashboard", "status": { "phase": "running", "ready": true, - "restarts": 1 + "restarts": 2 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-1303537707-7ncd1" + "name": "kubernetes-dashboard-vw0l6" } }, "metricset": { @@ -177,9 +205,9 @@ }, { "container": { - "id": "e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", + "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", "image": { - "name": "jenkinsci/jenkins:2.46.1" + "name": "gcr.io/google_containers/kubedns-amd64:1.9-test" }, "runtime": "docker" }, @@ -195,25 +223,30 @@ "cores": 0.2 } }, - "id": "docker://e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", + "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", "memory": { + "limit": { + "bytes": 278257920 + }, "request": { - "bytes": 268435456 + "bytes": 83400320 } }, - "name": "wise-lynx-jenkins", + "name": "kubedns", "status": { - "phase": "running", - "ready": true, - "restarts": 1 + "phase": "terminated", + "ready": false, + "restarts": 3 } }, - "namespace": "jenkins", + "namespace": { + "name": "test" + }, "node": { - "name": "minikube" + "name": "minikube-test" }, "pod": { - "name": "wise-lynx-jenkins-1616735317-svn6k" + "name": "kube-dns-v20-5g5cb-test" } }, "metricset": { @@ -227,9 +260,9 @@ }, { "container": { - "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", + "id": "e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", "image": { - "name": "gcr.io/google_containers/kubedns-amd64:1.9" + "name": "jenkinsci/jenkins:2.46.1" }, "runtime": "docker" }, @@ -242,31 +275,30 @@ "container": { "cpu": { "request": { - "cores": 0.1 + "cores": 0.2 } }, - "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", + "id": "docker://e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", "memory": { - "limit": { - "bytes": 178257920 - }, "request": { - "bytes": 73400320 + "bytes": 268435456 } }, - "name": "kubedns", + "name": "wise-lynx-jenkins", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 1 } }, - "namespace": "kube-system", + "namespace": { + "name": "jenkins" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb" + "name": "wise-lynx-jenkins-1616735317-svn6k" } }, "metricset": { @@ -279,13 +311,6 @@ } }, { - "container": { - "id": "4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", - "image": { - "name": "bitnami/redis:3.2.8-r2" - }, - "runtime": "docker" - }, "event": { "dataset": "kubernetes.container", "duration": 115000, @@ -294,29 +319,28 @@ "kubernetes": { "container": { "cpu": { + "limit": { + "cores": 0.2 + }, "request": { "cores": 0.1 } }, - "id": "docker://4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", "memory": { + "limit": { + "bytes": 52428800 + }, "request": { - "bytes": 268435456 + "bytes": 31457280 } }, - "name": "jumpy-owl-redis", - "status": { - "phase": "waiting", - "ready": false, - "restarts": 270 - } + "name": "kube-state-metrics" }, - "namespace": "default", - "node": { - "name": "minikube" + "namespace": { + "name": "kube-system" }, "pod": { - "name": "jumpy-owl-redis-3481028193-s78x9" + "name": "kube-state-metrics-1303537707-mnzbp" } }, "metricset": { @@ -330,9 +354,9 @@ }, { "container": { - "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", + "id": "9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", "image": { - "name": "gcr.io/google_containers/kubedns-amd64:1.9-test" + "name": "gcr.io/google_containers/kube-dnsmasq-amd64:1.4" }, "runtime": "docker" }, @@ -343,33 +367,22 @@ }, "kubernetes": { "container": { - "cpu": { - "request": { - "cores": 0.2 - } - }, - "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", - "memory": { - "limit": { - "bytes": 278257920 - }, - "request": { - "bytes": 83400320 - } - }, - "name": "kubedns", + "id": "docker://9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", + "name": "dnsmasq", "status": { - "phase": "terminated", - "ready": false, - "restarts": 3 + "phase": "running", + "ready": true, + "restarts": 2 } }, - "namespace": "test", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "minikube-test" + "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb-test" + "name": "kube-dns-v20-5g5cb" } }, "metricset": { @@ -383,9 +396,9 @@ }, { "container": { - "id": "91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", + "id": "973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", "image": { - "name": "gcr.io/google-containers/kube-addon-manager:v6.3" + "name": "gcr.io/google_containers/kube-state-metrics:v0.4.1" }, "runtime": "docker" }, @@ -397,29 +410,37 @@ "kubernetes": { "container": { "cpu": { + "limit": { + "cores": 0.2 + }, "request": { - "cores": 0.005 + "cores": 0.1 } }, - "id": "docker://91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", + "id": "docker://973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", "memory": { - "request": { + "limit": { "bytes": 52428800 + }, + "request": { + "bytes": 31457280 } }, - "name": "kube-addon-manager", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 1 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-addon-manager-minikube" + "name": "kube-state-metrics-1303537707-7ncd1" } }, "metricset": { @@ -433,9 +454,9 @@ }, { "container": { - "id": "52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", + "id": "4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", "image": { - "name": "gcr.io/google_containers/exechealthz-amd64:1.2" + "name": "bitnami/redis:3.2.8-r2" }, "runtime": "docker" }, @@ -448,31 +469,30 @@ "container": { "cpu": { "request": { - "cores": 0.01 + "cores": 0.1 } }, - "id": "docker://52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", + "id": "docker://4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", "memory": { - "limit": { - "bytes": 52428800 - }, "request": { - "bytes": 52428800 + "bytes": 268435456 } }, - "name": "healthz", + "name": "jumpy-owl-redis", "status": { - "phase": "running", - "ready": true, - "restarts": 2 + "phase": "waiting", + "ready": false, + "restarts": 270 } }, - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb" + "name": "jumpy-owl-redis-3481028193-s78x9" } }, "metricset": { @@ -486,9 +506,9 @@ }, { "container": { - "id": "9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", + "id": "469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", "image": { - "name": "gcr.io/google_containers/kube-dnsmasq-amd64:1.4" + "name": "gcr.io/kubernetes-helm/tiller:v2.3.1" }, "runtime": "docker" }, @@ -499,20 +519,22 @@ }, "kubernetes": { "container": { - "id": "docker://9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", - "name": "dnsmasq", + "id": "docker://469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", + "name": "tiller", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 1 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb" + "name": "tiller-deploy-3067024529-9lpmb" } }, "metricset": { diff --git a/metricbeat/module/kubernetes/state_container/state_container.go b/metricbeat/module/kubernetes/state_container/state_container.go index 23c34bf040fa..56ab2d8adac8 100644 --- a/metricbeat/module/kubernetes/state_container/state_container.go +++ b/metricbeat/module/kubernetes/state_container/state_container.go @@ -78,7 +78,7 @@ var ( Labels: map[string]p.LabelMap{ "pod": p.KeyLabel(mb.ModuleDataKey + ".pod.name"), "container": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "node": p.Label(mb.ModuleDataKey + ".node.name"), "container_id": p.Label("id"), diff --git a/metricbeat/module/kubernetes/state_container/state_container_integration_test.go b/metricbeat/module/kubernetes/state_container/state_container_integration_test.go index 6d7a79782505..a3e604c0a251 100644 --- a/metricbeat/module/kubernetes/state_container/state_container_integration_test.go +++ b/metricbeat/module/kubernetes/state_container/state_container_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_container diff --git a/metricbeat/module/kubernetes/state_container/state_container_test.go b/metricbeat/module/kubernetes/state_container/state_container_test.go index c0232bef50b1..df6d8f6758e3 100644 --- a/metricbeat/module/kubernetes/state_container/state_container_test.go +++ b/metricbeat/module/kubernetes/state_container/state_container_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_container diff --git a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected index 926f896d1126..35dea56dcff7 100644 --- a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "active": { diff --git a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected index 0702ef4cfe2a..aedf4d80e847 100644 --- a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "active": { diff --git a/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go b/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go index 272dc58aca6a..ffed1e92b677 100644 --- a/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go +++ b/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go @@ -74,7 +74,7 @@ func NewCronJobMetricSet(base mb.BaseMetricSet) (mb.MetricSet, error) { }, Labels: map[string]p.LabelMap{ "cronjob": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "schedule": p.KeyLabel("schedule"), "concurrency_policy": p.KeyLabel("concurrency"), }, diff --git a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go index 3a0f4ff36592..68e567b8bea4 100644 --- a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go +++ b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_cronjob diff --git a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go index dc58e7fb8a75..afc8550b4541 100644 --- a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go +++ b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_cronjob diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/data.json b/metricbeat/module/kubernetes/state_daemonset/_meta/data.json index 5856069d5686..158d2a34eeb1 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/data.json +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/data.json @@ -7,7 +7,7 @@ }, "kubernetes": { "daemonset": { - "name": "kube-proxy", + "name": "kindnet", "replicas": { "available": 1, "desired": 1, @@ -15,7 +15,9 @@ "unavailable": 0 } }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_daemonset", diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected index 93e2d068788d..73dfd269be2c 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kube-proxy", diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected index 93e2d068788d..73dfd269be2c 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kube-proxy", diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected index fbb6670ecd74..ff94aebc50a2 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-proxy", + "name": "kindnet", "replicas": { "available": 3, "desired": 3, @@ -27,14 +29,16 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "metricbeat", + "name": "kube-proxy", "replicas": { - "available": 2, - "desired": 2, - "ready": 2, + "available": 3, + "desired": 3, + "ready": 3, "unavailable": 0 } }, @@ -52,14 +56,16 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kindnet", + "name": "metricbeat", "replicas": { - "available": 3, - "desired": 3, - "ready": 3, + "available": 2, + "desired": 2, + "ready": 2, "unavailable": 0 } }, diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json index 9768d8d39281..a95bd894fb0c 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json @@ -7,7 +7,7 @@ }, "kubernetes": { "daemonset": { - "name": "kube-proxy", + "name": "kindnet", "replicas": { "available": 1, "desired": 1, @@ -15,7 +15,9 @@ "unavailable": 0 } }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_daemonset", @@ -34,7 +36,7 @@ }, "kubernetes": { "daemonset": { - "name": "kindnet", + "name": "kube-proxy", "replicas": { "available": 1, "desired": 1, @@ -42,7 +44,9 @@ "unavailable": 0 } }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_daemonset", diff --git a/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go b/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go index 1066afa21959..95e580744b12 100644 --- a/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go +++ b/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go @@ -50,7 +50,7 @@ var ( Labels: map[string]p.LabelMap{ "daemonset": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go index 649ab87d565a..ffbc8cd92800 100644 --- a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go +++ b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_daemonset diff --git a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go index 491033e5b188..ff139fd1be81 100644 --- a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go +++ b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_daemonset diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected index b2dce0071463..fa3dbf2df802 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics", + "name": "kube-dns", "paused": false, "replicas": { "available": 1, @@ -28,7 +30,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kubernetes-dashboard", @@ -54,10 +58,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-dns", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected index 3f1255e36c6b..b83cb15d7fd0 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected @@ -2,16 +2,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics", + "name": "coredns", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 2, + "desired": 2, "unavailable": 0, - "updated": 1 + "updated": 2 } }, "Index": "", @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "coredns", + "name": "kube-state-metrics", "paused": false, "replicas": { - "available": 2, - "desired": 2, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 2 + "updated": 1 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected index de439f143865..5f0b8c206891 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected @@ -2,16 +2,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics", + "name": "coredns", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 2, + "desired": 2, "unavailable": 0, - "updated": 1 + "updated": 2 } }, "Index": "", @@ -28,7 +30,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "local-path-storage" + "namespace": { + "name": "local-path-storage" + } }, "MetricSetFields": { "name": "local-path-provisioner", @@ -54,10 +58,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "hello-python", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, @@ -80,16 +86,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "name": "coredns", + "name": "hello-python", "paused": false, "replicas": { - "available": 2, - "desired": 2, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 2 + "updated": 1 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json index 19faf98a4ce3..fabdb0fabb03 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json @@ -7,16 +7,18 @@ }, "kubernetes": { "deployment": { - "name": "tiller-deploy", - "paused": false, + "name": "jumpy-owl-redis", + "paused": true, "replicas": { - "available": 1, - "desired": 1, - "unavailable": 0, - "updated": 1 + "available": 6, + "desired": 2, + "unavailable": 7, + "updated": 8 } }, - "namespace": "kube-system" + "namespace": { + "name": "test" + } }, "metricset": { "name": "state_deployment", @@ -35,16 +37,18 @@ }, "kubernetes": { "deployment": { - "name": "wise-lynx-jenkins", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, - "desired": 1, - "unavailable": 0, - "updated": 1 + "desired": 2, + "unavailable": 1, + "updated": 2 } }, - "namespace": "jenkins" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_deployment", @@ -64,15 +68,17 @@ "kubernetes": { "deployment": { "name": "jumpy-owl-redis", - "paused": true, + "paused": false, "replicas": { - "available": 6, - "desired": 2, - "unavailable": 7, - "updated": 8 + "available": 0, + "desired": 1, + "unavailable": 1, + "updated": 1 } }, - "namespace": "test" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_deployment", @@ -91,16 +97,18 @@ }, "kubernetes": { "deployment": { - "name": "jumpy-owl-redis", + "name": "tiller-deploy", "paused": false, "replicas": { - "available": 0, + "available": 1, "desired": 1, - "unavailable": 1, + "unavailable": 0, "updated": 1 } }, - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_deployment", @@ -119,16 +127,18 @@ }, "kubernetes": { "deployment": { - "name": "kube-state-metrics", + "name": "wise-lynx-jenkins", "paused": false, "replicas": { "available": 1, - "desired": 2, - "unavailable": 1, - "updated": 2 + "desired": 1, + "unavailable": 0, + "updated": 1 } }, - "namespace": "kube-system" + "namespace": { + "name": "jenkins" + } }, "metricset": { "name": "state_deployment", diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json index b766e4068f47..bfc922814ee2 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json @@ -7,7 +7,7 @@ }, "kubernetes": { "deployment": { - "name": "metricbeat", + "name": "springboot-cr-applier", "paused": false, "replicas": { "available": 1, @@ -16,7 +16,9 @@ "updated": 1 } }, - "namespace": "openshift-logging" + "namespace": { + "name": "telenet-cluster-ops" + } }, "metricset": { "name": "state_deployment", @@ -35,7 +37,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "namespace-operator", "paused": false, "replicas": { "available": 1, @@ -44,7 +46,9 @@ "updated": 1 } }, - "namespace": "bi" + "namespace": { + "name": "telenet-operators" + } }, "metricset": { "name": "state_deployment", @@ -63,7 +67,7 @@ }, "kubernetes": { "deployment": { - "name": "tiller", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -72,7 +76,9 @@ "updated": 1 } }, - "namespace": "tiller" + "namespace": { + "name": "devops-playground" + } }, "metricset": { "name": "state_deployment", @@ -91,16 +97,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "kube-state-metrics", "paused": false, "replicas": { - "available": 0, - "desired": 0, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 0 + "updated": 1 } }, - "namespace": "adc-vault" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -119,16 +127,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "webconsole", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 3, + "desired": 3, "unavailable": 0, - "updated": 1 + "updated": 3 } }, - "namespace": "paas-demo" + "namespace": { + "name": "openshift-web-console" + } }, "metricset": { "name": "state_deployment", @@ -147,7 +157,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-cr-applier", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -156,7 +166,9 @@ "updated": 1 } }, - "namespace": "telenet-cluster-ops" + "namespace": { + "name": "gdpr" + } }, "metricset": { "name": "state_deployment", @@ -184,7 +196,9 @@ "updated": 1 } }, - "namespace": "paas-demo" + "namespace": { + "name": "edev-communication" + } }, "metricset": { "name": "state_deployment", @@ -203,7 +217,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -212,7 +226,9 @@ "updated": 1 } }, - "namespace": "edev-communication" + "namespace": { + "name": "telenet-baseimages" + } }, "metricset": { "name": "state_deployment", @@ -231,7 +247,7 @@ }, "kubernetes": { "deployment": { - "name": "kube-state-metrics", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -240,7 +256,9 @@ "updated": 1 } }, - "namespace": "openshift-logging" + "namespace": { + "name": "bi" + } }, "metricset": { "name": "state_deployment", @@ -259,7 +277,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "dynatrace-oneagent-operator", "paused": false, "replicas": { "available": 1, @@ -268,7 +286,9 @@ "updated": 1 } }, - "namespace": "devops-playground" + "namespace": { + "name": "dynatrace" + } }, "metricset": { "name": "state_deployment", @@ -296,7 +316,9 @@ "updated": 1 } }, - "namespace": "edev-tools" + "namespace": { + "name": "darwin-integrations" + } }, "metricset": { "name": "state_deployment", @@ -324,7 +346,9 @@ "updated": 1 } }, - "namespace": "devops-playground" + "namespace": { + "name": "paas-demo" + } }, "metricset": { "name": "state_deployment", @@ -352,7 +376,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -371,16 +397,18 @@ }, "kubernetes": { "deployment": { - "name": "tiller-deploy", + "name": "jenkins-cr-applier", "paused": false, "replicas": { - "available": 0, + "available": 1, "desired": 1, - "unavailable": 1, + "unavailable": 0, "updated": 1 } }, - "namespace": "tiller" + "namespace": { + "name": "telenet-cluster-ops" + } }, "metricset": { "name": "state_deployment", @@ -399,16 +427,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "tiller-deploy", "paused": false, "replicas": { - "available": 1, + "available": 0, "desired": 1, - "unavailable": 0, + "unavailable": 1, "updated": 1 } }, - "namespace": "darwin-integrations" + "namespace": { + "name": "tiller" + } }, "metricset": { "name": "state_deployment", @@ -427,16 +457,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "elasticsearch", "paused": false, "replicas": { - "available": 1, + "available": 0, "desired": 1, - "unavailable": 0, + "unavailable": 1, "updated": 1 } }, - "namespace": "edev-communication" + "namespace": { + "name": "test-config" + } }, "metricset": { "name": "state_deployment", @@ -455,16 +487,18 @@ }, "kubernetes": { "deployment": { - "name": "webconsole", + "name": "jenkins-operator", "paused": false, "replicas": { - "available": 3, - "desired": 3, + "available": 0, + "desired": 0, "unavailable": 0, - "updated": 3 + "updated": 0 } }, - "namespace": "openshift-web-console" + "namespace": { + "name": "adc-vault" + } }, "metricset": { "name": "state_deployment", @@ -483,7 +517,7 @@ }, "kubernetes": { "deployment": { - "name": "console", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -492,7 +526,9 @@ "updated": 1 } }, - "namespace": "openshift-console" + "namespace": { + "name": "edev-tools" + } }, "metricset": { "name": "state_deployment", @@ -511,7 +547,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -520,7 +556,9 @@ "updated": 1 } }, - "namespace": "gdpr" + "namespace": { + "name": "devops-playground" + } }, "metricset": { "name": "state_deployment", @@ -539,7 +577,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-cr-applier", + "name": "cluster-monitoring-operator", "paused": false, "replicas": { "available": 1, @@ -548,7 +586,9 @@ "updated": 1 } }, - "namespace": "telenet-cluster-ops" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -567,7 +607,7 @@ }, "kubernetes": { "deployment": { - "name": "namespace-operator", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -576,7 +616,9 @@ "updated": 1 } }, - "namespace": "telenet-operators" + "namespace": { + "name": "paas-demo" + } }, "metricset": { "name": "state_deployment", @@ -595,7 +637,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -604,7 +646,9 @@ "updated": 1 } }, - "namespace": "telenet-baseimages" + "namespace": { + "name": "bi" + } }, "metricset": { "name": "state_deployment", @@ -623,7 +667,7 @@ }, "kubernetes": { "deployment": { - "name": "cluster-monitoring-operator", + "name": "console", "paused": false, "replicas": { "available": 1, @@ -632,7 +676,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "openshift-console" + } }, "metricset": { "name": "state_deployment", @@ -651,16 +697,18 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "kibana-kibana", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 0, + "desired": 0, "unavailable": 0, - "updated": 1 + "updated": 0 } }, - "namespace": "darwin-integrations" + "namespace": { + "name": "kibana-tst" + } }, "metricset": { "name": "state_deployment", @@ -679,7 +727,7 @@ }, "kubernetes": { "deployment": { - "name": "kibana", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -688,7 +736,9 @@ "updated": 1 } }, - "namespace": "test-config" + "namespace": { + "name": "edev-tools" + } }, "metricset": { "name": "state_deployment", @@ -707,7 +757,7 @@ }, "kubernetes": { "deployment": { - "name": "dynatrace-oneagent-operator", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -716,7 +766,9 @@ "updated": 1 } }, - "namespace": "dynatrace" + "namespace": { + "name": "edev-communication" + } }, "metricset": { "name": "state_deployment", @@ -735,7 +787,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, @@ -744,7 +796,9 @@ "updated": 1 } }, - "namespace": "edev-tools" + "namespace": { + "name": "openshift-logging" + } }, "metricset": { "name": "state_deployment", @@ -763,7 +817,7 @@ }, "kubernetes": { "deployment": { - "name": "sonarqube-operator", + "name": "grafana", "paused": false, "replicas": { "available": 1, @@ -772,7 +826,9 @@ "updated": 1 } }, - "namespace": "devops-playground" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -791,7 +847,7 @@ }, "kubernetes": { "deployment": { - "name": "grafana", + "name": "weblogic-operator", "paused": false, "replicas": { "available": 1, @@ -800,7 +856,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "weblogic-poc" + } }, "metricset": { "name": "state_deployment", @@ -819,16 +877,18 @@ }, "kubernetes": { "deployment": { - "name": "kibana-kibana", + "name": "jenkins-operator", "paused": false, "replicas": { - "available": 0, - "desired": 0, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 0 + "updated": 1 } }, - "namespace": "kibana-tst" + "namespace": { + "name": "gdpr" + } }, "metricset": { "name": "state_deployment", @@ -847,7 +907,7 @@ }, "kubernetes": { "deployment": { - "name": "kube-state-metrics", + "name": "sonarqube-operator", "paused": false, "replicas": { "available": 1, @@ -856,7 +916,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "devops-playground" + } }, "metricset": { "name": "state_deployment", @@ -875,16 +937,18 @@ }, "kubernetes": { "deployment": { - "name": "elasticsearch", + "name": "kibana", "paused": false, "replicas": { - "available": 0, + "available": 1, "desired": 1, - "unavailable": 1, + "unavailable": 0, "updated": 1 } }, - "namespace": "test-config" + "namespace": { + "name": "test-config" + } }, "metricset": { "name": "state_deployment", @@ -912,7 +976,9 @@ "updated": 1 } }, - "namespace": "gdpr" + "namespace": { + "name": "darwin-integrations" + } }, "metricset": { "name": "state_deployment", @@ -931,7 +997,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "tiller", "paused": false, "replicas": { "available": 1, @@ -940,7 +1006,9 @@ "updated": 1 } }, - "namespace": "bi" + "namespace": { + "name": "tiller" + } }, "metricset": { "name": "state_deployment", @@ -959,7 +1027,7 @@ }, "kubernetes": { "deployment": { - "name": "weblogic-operator", + "name": "metricbeat", "paused": false, "replicas": { "available": 1, @@ -968,7 +1036,9 @@ "updated": 1 } }, - "namespace": "weblogic-poc" + "namespace": { + "name": "openshift-logging" + } }, "metricset": { "name": "state_deployment", diff --git a/metricbeat/module/kubernetes/state_deployment/state_deployment.go b/metricbeat/module/kubernetes/state_deployment/state_deployment.go index 02448afdc9a9..6b440baa2b97 100644 --- a/metricbeat/module/kubernetes/state_deployment/state_deployment.go +++ b/metricbeat/module/kubernetes/state_deployment/state_deployment.go @@ -51,7 +51,7 @@ var ( Labels: map[string]p.LabelMap{ "deployment": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go b/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go index 17a38d56ecde..689d2de81365 100644 --- a/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go +++ b/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_deployment diff --git a/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go b/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go index b3f01e04f02c..f6f2984930d0 100644 --- a/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go +++ b/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_deployment diff --git a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected index 8822378f36dc..5b40b8ece051 100644 --- a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "completions": { diff --git a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected index c9110a37ed01..484d805c3a02 100644 --- a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "completions": { diff --git a/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json b/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json index afa859bc4182..926fc60faaab 100644 --- a/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json @@ -10,7 +10,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075645", + "name": "sleep-30-ok-cron-27075628", "owner": { "is_controller": "true", "kind": "CronJob", @@ -25,10 +25,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:45:00.000Z" + "created": "2021-06-24T12:28:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -48,27 +50,33 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075617", + "name": "sleep-30-ok-cron-27075625", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 1 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:17:00.000Z" + "completed": "2021-06-24T12:37:03.000Z", + "created": "2021-06-24T12:25:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -88,27 +96,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075644", + "name": "sleep-5-parallel-cron-27075641", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:44:00.000Z" + "created": "2021-06-24T12:41:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -130,7 +140,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075549", + "name": "sleep-30-fail-cron-27075644", "owner": { "is_controller": "true", "kind": "CronJob", @@ -145,10 +155,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:09:00.000Z" + "created": "2021-06-24T12:44:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -170,11 +182,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075638", + "name": "sleep-30-fail-cron-27075618", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -185,10 +197,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:38:00.000Z" + "created": "2021-06-24T12:18:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -208,27 +222,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075639", + "name": "sleep-30-ok-cron-27075618", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:39:00.000Z" + "created": "2021-06-24T12:18:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -250,7 +266,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075535", + "name": "sleep-30-fail-cron-27075622", "owner": { "is_controller": "true", "kind": "CronJob", @@ -265,10 +281,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T10:55:00.000Z" + "created": "2021-06-24T12:22:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -288,27 +306,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075551", + "name": "sleep-30-ok-cron-27075617", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:11:00.000Z" + "created": "2021-06-24T12:17:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -330,7 +350,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075623", + "name": "sleep-5-parallel-cron-27075639", "owner": { "is_controller": "true", "kind": "CronJob", @@ -340,15 +360,17 @@ "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:23:00.000Z" + "created": "2021-06-24T12:39:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -370,7 +392,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075592", + "name": "sleep-30-ok-cron-27075590", "owner": { "is_controller": "true", "kind": "CronJob", @@ -385,10 +407,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:52:00.000Z" + "created": "2021-06-24T11:50:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -408,27 +432,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075584", + "name": "sleep-5-parallel-cron-27075622", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { - "created": "2021-06-24T11:44:00.000Z" + "created": "2021-06-24T12:22:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -450,7 +476,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075642", + "name": "sleep-30-ok-cron-27075627", "owner": { "is_controller": "true", "kind": "CronJob", @@ -460,15 +486,21 @@ "desired": 1 }, "pods": { - "active": 1, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 1 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:42:00.000Z" + "completed": "2021-06-24T12:32:20.000Z", + "created": "2021-06-24T12:27:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -488,19 +520,19 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075643", + "name": "sleep-30-ok-cron-27075643", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, @@ -508,7 +540,9 @@ "created": "2021-06-24T12:43:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -530,7 +564,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075536", + "name": "sleep-30-fail-cron-27075625", "owner": { "is_controller": "true", "kind": "CronJob", @@ -545,10 +579,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T10:56:00.000Z" + "created": "2021-06-24T12:25:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -570,7 +606,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075630", + "name": "sleep-5-parallel-cron-27075644", "owner": { "is_controller": "true", "kind": "CronJob", @@ -585,10 +621,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:30:00.000Z" + "created": "2021-06-24T12:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -608,27 +646,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075626", + "name": "sleep-30-ok-cron-27075610", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 2 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:26:00.000Z" + "created": "2021-06-24T12:10:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -648,27 +688,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075610", + "name": "sleep-5-parallel-cron-27075628", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:10:00.000Z" + "created": "2021-06-24T12:28:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -690,11 +732,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075618", + "name": "sleep-30-fail-cron-27075632", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -705,10 +747,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:18:00.000Z" + "created": "2021-06-24T12:32:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -728,27 +772,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075608", + "name": "sleep-30-fail-cron-27075612", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:08:00.000Z" + "created": "2021-06-24T12:12:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -768,27 +814,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075622", + "name": "sleep-30-ok-cron-27075633", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 2 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:22:00.000Z" + "created": "2021-06-24T12:33:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -810,7 +858,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075591", + "name": "sleep-30-fail-cron-27075615", "owner": { "is_controller": "true", "kind": "CronJob", @@ -825,10 +873,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:51:00.000Z" + "created": "2021-06-24T12:15:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -850,11 +900,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075598", + "name": "sleep-30-ok-cron-27075621", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -865,10 +915,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:58:00.000Z" + "created": "2021-06-24T12:21:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -888,27 +940,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075636", + "name": "sleep-30-fail-cron-27075591", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 4 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:36:00.000Z" + "created": "2021-06-24T11:51:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -930,11 +984,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075645", + "name": "sleep-30-ok-cron-27075639", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -945,10 +999,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:45:00.000Z" + "created": "2021-06-24T12:39:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -970,29 +1026,27 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075629", + "name": "sleep-30-fail-cron-27075638", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 1 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:42:50.000Z", - "created": "2021-06-24T12:29:00.000Z" + "created": "2021-06-24T12:38:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1012,27 +1066,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075604", + "name": "sleep-30-ok-cron-27075641", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:04:00.000Z" + "created": "2021-06-24T12:41:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1052,27 +1108,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075591", + "name": "sleep-30-ok-cron-27075636", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:51:00.000Z" + "created": "2021-06-24T12:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1092,27 +1150,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075645", + "name": "sleep-30-fail-cron-27075605", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:45:00.000Z" + "created": "2021-06-24T12:05:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1134,11 +1194,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075625", + "name": "sleep-30-ok-cron-27075634", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1149,10 +1209,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:25:00.000Z" + "created": "2021-06-24T12:34:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1174,7 +1236,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075639", + "name": "sleep-30-fail-cron-27075547", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1189,10 +1251,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:39:00.000Z" + "created": "2021-06-24T11:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1214,11 +1278,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075636", + "name": "sleep-30-ok-cron-27075592", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1229,10 +1293,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:36:00.000Z" + "created": "2021-06-24T11:52:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1252,27 +1318,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075615", + "name": "sleep-5-parallel-cron-27075601", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 3, "failed": 0, - "succeeded": 0 + "succeeded": 17 }, "time": { - "created": "2021-06-24T12:15:00.000Z" + "created": "2021-06-24T12:01:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1294,7 +1362,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075641", + "name": "sleep-5-parallel-cron-27075603", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1304,15 +1372,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:41:00.000Z" + "created": "2021-06-24T12:03:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1332,27 +1402,33 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075621", + "name": "sleep-5-parallel-cron-27075613", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 20 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:21:00.000Z" + "completed": "2021-06-24T12:28:39.000Z", + "created": "2021-06-24T12:13:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1372,27 +1448,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075623", + "name": "sleep-5-parallel-cron-27075626", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { - "created": "2021-06-24T12:23:00.000Z" + "created": "2021-06-24T12:26:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1412,27 +1490,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075563", + "name": "sleep-30-fail-cron-27075576", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:23:00.000Z" + "created": "2021-06-24T11:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1454,11 +1534,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075612", + "name": "sleep-30-ok-cron-27075547", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1469,10 +1549,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:12:00.000Z" + "created": "2021-06-24T11:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1494,7 +1576,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075634", + "name": "sleep-5-parallel-cron-27075615", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1504,15 +1586,21 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 0, "failed": 0, - "succeeded": 1 + "succeeded": 20 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:34:00.000Z" + "completed": "2021-06-24T12:33:19.000Z", + "created": "2021-06-24T12:15:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1532,27 +1620,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075590", + "name": "sleep-30-fail-cron-27075628", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:50:00.000Z" + "created": "2021-06-24T12:28:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1574,11 +1664,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075621", + "name": "sleep-30-ok-cron-27075640", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1589,10 +1679,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:21:00.000Z" + "created": "2021-06-24T12:40:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1614,7 +1706,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075639", + "name": "sleep-30-ok-cron-27075642", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1629,10 +1721,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:39:00.000Z" + "created": "2021-06-24T12:42:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1652,27 +1746,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075594", + "name": "sleep-5-parallel-cron-27075630", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T11:54:00.000Z" + "created": "2021-06-24T12:30:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1694,7 +1790,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075631", + "name": "sleep-5-parallel-cron-27075635", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1706,13 +1802,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 3 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:31:00.000Z" + "created": "2021-06-24T12:35:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1732,27 +1830,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075535", + "name": "sleep-5-parallel-cron-27075621", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 1 }, "time": { - "created": "2021-06-24T10:55:00.000Z" + "created": "2021-06-24T12:21:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1774,11 +1874,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075631", + "name": "sleep-30-ok-cron-27075646", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1789,10 +1889,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:31:00.000Z" + "created": "2021-06-24T12:46:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1814,7 +1916,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075629", + "name": "sleep-5-parallel-cron-27075584", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1824,15 +1926,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 2, "failed": 0, - "succeeded": 6 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:29:00.000Z" + "created": "2021-06-24T11:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1854,7 +1958,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075633", + "name": "sleep-5-parallel-cron-27075604", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1864,15 +1968,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:33:00.000Z" + "created": "2021-06-24T12:04:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1894,7 +2000,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075616", + "name": "sleep-5-parallel-cron-27075585", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1904,15 +2010,17 @@ "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 19 + "succeeded": 10 }, "time": { - "created": "2021-06-24T12:16:00.000Z" + "created": "2021-06-24T11:45:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1934,11 +2042,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075637", + "name": "sleep-30-fail-cron-27075603", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -1949,10 +2057,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:37:00.000Z" + "created": "2021-06-24T12:03:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1974,7 +2084,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075616", + "name": "sleep-30-fail-cron-27075619", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1989,10 +2099,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:16:00.000Z" + "created": "2021-06-24T12:19:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2014,7 +2126,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075615", + "name": "sleep-5-parallel-cron-27075620", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2032,11 +2144,13 @@ "complete": "true" }, "time": { - "completed": "2021-06-24T12:33:19.000Z", - "created": "2021-06-24T12:15:00.000Z" + "completed": "2021-06-24T12:37:24.000Z", + "created": "2021-06-24T12:20:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2058,7 +2172,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075627", + "name": "sleep-30-ok-cron-27075630", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2068,19 +2182,17 @@ "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 1 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:32:20.000Z", - "created": "2021-06-24T12:27:00.000Z" + "created": "2021-06-24T12:30:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2102,7 +2214,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075611", + "name": "sleep-30-fail-cron-27075634", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2117,10 +2229,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:11:00.000Z" + "created": "2021-06-24T12:34:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2142,25 +2256,31 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075593", + "name": "sleep-30-ok-cron-27075629", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 }, "pods": { - "active": 1, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 1 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T11:53:00.000Z" + "completed": "2021-06-24T12:42:50.000Z", + "created": "2021-06-24T12:29:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2182,11 +2302,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075641", + "name": "sleep-30-ok-cron-27075594", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -2197,10 +2317,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:41:00.000Z" + "created": "2021-06-24T11:54:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2220,27 +2342,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075628", + "name": "sleep-5-parallel-cron-27075532", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:28:00.000Z" + "created": "2021-06-24T10:52:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2260,31 +2384,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075625", + "name": "sleep-5-parallel-cron-27075612", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 0, + "active": 5, "failed": 0, "succeeded": 1 }, - "status": { - "complete": "true" - }, "time": { - "completed": "2021-06-24T12:37:03.000Z", - "created": "2021-06-24T12:25:00.000Z" + "created": "2021-06-24T12:12:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2306,7 +2428,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075585", + "name": "sleep-5-parallel-cron-27075610", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2316,15 +2438,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 3, "failed": 0, - "succeeded": 10 + "succeeded": 17 }, "time": { - "created": "2021-06-24T11:45:00.000Z" + "created": "2021-06-24T12:10:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2346,11 +2470,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075601", + "name": "sleep-30-ok-cron-27075536", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -2361,10 +2485,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:01:00.000Z" + "created": "2021-06-24T10:56:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2386,7 +2512,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075614", + "name": "sleep-30-fail-cron-27075636", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2401,50 +2527,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:14:00.000Z" - } - }, - "namespace": "default" - }, - "metricset": { - "name": "state_job", - "period": 10000 - }, - "service": { - "address": "127.0.0.1:55555", - "type": "kubernetes" - } - }, - { - "event": { - "dataset": "kubernetes.job", - "duration": 115000, - "module": "kubernetes" - }, - "kubernetes": { - "job": { - "completions": { - "desired": 20 - }, - "name": "sleep-5-parallel-cron-27075644", - "owner": { - "is_controller": "true", - "kind": "CronJob", - "name": "sleep-5-parallel-cron" - }, - "parallelism": { - "desired": 5 - }, - "pods": { - "active": 5, - "failed": 0, - "succeeded": 0 - }, - "time": { - "created": "2021-06-24T12:44:00.000Z" + "created": "2021-06-24T12:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2466,7 +2554,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075617", + "name": "sleep-30-fail-cron-27075549", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2481,10 +2569,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:17:00.000Z" + "created": "2021-06-24T11:09:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2506,11 +2596,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075601", + "name": "sleep-30-fail-cron-27075640", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -2521,10 +2611,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:01:00.000Z" + "created": "2021-06-24T12:40:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2546,7 +2638,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075628", + "name": "sleep-5-parallel-cron-27075592", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2556,15 +2648,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:28:00.000Z" + "created": "2021-06-24T11:52:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2586,7 +2680,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075605", + "name": "sleep-30-fail-cron-27075598", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2601,10 +2695,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:05:00.000Z" + "created": "2021-06-24T11:58:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2626,7 +2722,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075646", + "name": "sleep-30-ok-cron-27075631", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2641,10 +2737,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:46:00.000Z" + "created": "2021-06-24T12:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2666,7 +2764,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075607", + "name": "sleep-30-fail-cron-27075609", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2681,10 +2779,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:07:00.000Z" + "created": "2021-06-24T12:09:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2706,7 +2806,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075627", + "name": "sleep-5-parallel-cron-27075646", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2718,13 +2818,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 15 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:27:00.000Z" + "created": "2021-06-24T12:46:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2744,31 +2846,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075620", + "name": "sleep-30-fail-cron-27075630", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 20 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:37:24.000Z", - "created": "2021-06-24T12:20:00.000Z" + "created": "2021-06-24T12:30:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2788,30 +2888,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075600", + "name": "sleep-5-parallel-cron-27075634", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 0, - "failed": 1, - "succeeded": 0 - }, - "status": { - "failed": "true" + "active": 5, + "failed": 0, + "succeeded": 1 }, "time": { - "created": "2021-06-24T12:00:00.000Z" + "created": "2021-06-24T12:34:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2833,7 +2932,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075607", + "name": "sleep-5-parallel-cron-27075632", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2843,15 +2942,17 @@ "desired": 5 }, "pods": { - "active": 3, + "active": 5, "failed": 0, - "succeeded": 17 + "succeeded": 1 }, "time": { - "created": "2021-06-24T12:07:00.000Z" + "created": "2021-06-24T12:32:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2873,7 +2974,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075590", + "name": "sleep-30-fail-cron-27075563", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2888,10 +2989,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:50:00.000Z" + "created": "2021-06-24T11:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2911,27 +3014,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075617", + "name": "sleep-5-parallel-cron-27075535", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:17:00.000Z" + "created": "2021-06-24T10:55:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2953,7 +3058,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075610", + "name": "sleep-5-parallel-cron-27075643", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2963,15 +3068,17 @@ "desired": 5 }, "pods": { - "active": 3, + "active": 5, "failed": 0, - "succeeded": 17 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:10:00.000Z" + "created": "2021-06-24T12:43:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2991,27 +3098,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075572", + "name": "sleep-30-fail-cron-27075641", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:32:00.000Z" + "created": "2021-06-24T12:41:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3033,11 +3142,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075641", + "name": "sleep-30-fail-cron-27075633", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3048,10 +3157,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:41:00.000Z" + "created": "2021-06-24T12:33:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3073,7 +3184,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075547", + "name": "sleep-30-fail-cron-27075614", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3088,10 +3199,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:07:00.000Z" + "created": "2021-06-24T12:14:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3113,11 +3226,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075630", + "name": "sleep-30-fail-cron-27075604", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3128,10 +3241,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:30:00.000Z" + "created": "2021-06-24T12:04:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3151,27 +3266,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075621", + "name": "sleep-30-fail-cron-27075643", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:21:00.000Z" + "created": "2021-06-24T12:43:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3191,27 +3308,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075624", + "name": "sleep-5-parallel-cron-27075642", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:24:00.000Z" + "created": "2021-06-24T12:42:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3231,27 +3350,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075619", + "name": "sleep-5-parallel-cron-27075551", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:19:00.000Z" + "created": "2021-06-24T11:11:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3273,7 +3394,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075601", + "name": "sleep-5-parallel-cron-27075614", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3283,15 +3404,17 @@ "desired": 5 }, "pods": { - "active": 3, + "active": 5, "failed": 0, - "succeeded": 17 + "succeeded": 15 }, "time": { - "created": "2021-06-24T12:01:00.000Z" + "created": "2021-06-24T12:14:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3313,7 +3436,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075643", + "name": "sleep-30-fail-cron-27075607", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3328,10 +3451,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:43:00.000Z" + "created": "2021-06-24T12:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3353,11 +3478,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075635", + "name": "sleep-30-fail-cron-27075588", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3368,10 +3493,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:35:00.000Z" + "created": "2021-06-24T11:48:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3393,11 +3520,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075547", + "name": "sleep-30-fail-cron-27075590", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3408,10 +3535,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:07:00.000Z" + "created": "2021-06-24T11:50:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3433,11 +3562,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075588", + "name": "sleep-30-ok-cron-27075612", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -3448,10 +3577,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:48:00.000Z" + "created": "2021-06-24T12:12:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3473,7 +3604,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075612", + "name": "sleep-30-ok-cron-27075535", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3488,10 +3619,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:12:00.000Z" + "created": "2021-06-24T10:55:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3511,27 +3644,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075646", + "name": "sleep-30-ok-cron-27075637", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:46:00.000Z" + "created": "2021-06-24T12:37:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3553,7 +3688,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075604", + "name": "sleep-30-fail-cron-27075620", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3568,10 +3703,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:04:00.000Z" + "created": "2021-06-24T12:20:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3593,11 +3730,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075640", + "name": "sleep-30-ok-cron-27075638", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -3608,10 +3745,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:40:00.000Z" + "created": "2021-06-24T12:38:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3633,11 +3772,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075631", + "name": "sleep-30-fail-cron-27075592", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3648,10 +3787,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:31:00.000Z" + "created": "2021-06-24T11:52:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3673,7 +3814,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075635", + "name": "sleep-30-fail-cron-27075629", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3688,10 +3829,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:35:00.000Z" + "created": "2021-06-24T12:29:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3713,11 +3856,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075634", + "name": "sleep-30-fail-cron-27075554", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3728,10 +3871,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:34:00.000Z" + "created": "2021-06-24T11:14:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3753,7 +3898,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075592", + "name": "sleep-5-parallel-cron-27075591", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3768,10 +3913,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:52:00.000Z" + "created": "2021-06-24T11:51:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3793,7 +3940,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075618", + "name": "sleep-30-fail-cron-27075600", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3803,15 +3950,62 @@ "desired": 1 }, "pods": { - "active": 1, - "failed": 0, + "active": 0, + "failed": 1, "succeeded": 0 }, + "status": { + "failed": "true" + }, + "time": { + "created": "2021-06-24T12:00:00.000Z" + } + }, + "namespace": { + "name": "default" + } + }, + "metricset": { + "name": "state_job", + "period": 10000 + }, + "service": { + "address": "127.0.0.1:55555", + "type": "kubernetes" + } + }, + { + "event": { + "dataset": "kubernetes.job", + "duration": 115000, + "module": "kubernetes" + }, + "kubernetes": { + "job": { + "completions": { + "desired": 20 + }, + "name": "sleep-5-parallel-cron-27075618", + "owner": { + "is_controller": "true", + "kind": "CronJob", + "name": "sleep-5-parallel-cron" + }, + "parallelism": { + "desired": 5 + }, + "pods": { + "active": 2, + "failed": 0, + "succeeded": 18 + }, "time": { "created": "2021-06-24T12:18:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3833,7 +4027,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075642", + "name": "sleep-30-fail-cron-27075645", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3848,10 +4042,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:42:00.000Z" + "created": "2021-06-24T12:45:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3873,7 +4069,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075535", + "name": "sleep-5-parallel-cron-27075636", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3883,15 +4079,17 @@ "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 19 + "succeeded": 4 }, "time": { - "created": "2021-06-24T10:55:00.000Z" + "created": "2021-06-24T12:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3913,7 +4111,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075566", + "name": "sleep-5-parallel-cron-27075548", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3928,10 +4126,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:26:00.000Z" + "created": "2021-06-24T11:08:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3951,27 +4151,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075634", + "name": "sleep-5-parallel-cron-27075607", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 3, "failed": 0, - "succeeded": 0 + "succeeded": 17 }, "time": { - "created": "2021-06-24T12:34:00.000Z" + "created": "2021-06-24T12:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3993,7 +4195,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075602", + "name": "sleep-30-fail-cron-27075606", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4008,10 +4210,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:02:00.000Z" + "created": "2021-06-24T12:06:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4031,27 +4235,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075640", + "name": "sleep-30-fail-cron-27075536", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:40:00.000Z" + "created": "2021-06-24T10:56:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4071,31 +4277,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075613", + "name": "sleep-30-fail-cron-27075642", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 20 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:28:39.000Z", - "created": "2021-06-24T12:13:00.000Z" + "created": "2021-06-24T12:42:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4117,7 +4321,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075624", + "name": "sleep-5-parallel-cron-27075645", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4129,13 +4333,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 7 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:24:00.000Z" + "created": "2021-06-24T12:45:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4155,27 +4361,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075637", + "name": "sleep-5-parallel-cron-27075637", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { "created": "2021-06-24T12:37:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4197,7 +4405,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075606", + "name": "sleep-30-fail-cron-27075646", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4212,10 +4420,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:06:00.000Z" + "created": "2021-06-24T12:46:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4235,27 +4445,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075632", + "name": "sleep-5-parallel-cron-27075594", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 9 }, "time": { - "created": "2021-06-24T12:32:00.000Z" + "created": "2021-06-24T11:54:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4275,27 +4487,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075627", + "name": "sleep-5-parallel-cron-27075631", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 3 }, "time": { - "created": "2021-06-24T12:27:00.000Z" + "created": "2021-06-24T12:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4317,7 +4531,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075571", + "name": "sleep-5-parallel-cron-27075572", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4332,10 +4546,12 @@ "succeeded": 18 }, "time": { - "created": "2021-06-24T11:31:00.000Z" + "created": "2021-06-24T11:32:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4355,27 +4571,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075564", + "name": "sleep-30-fail-cron-27075610", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:24:00.000Z" + "created": "2021-06-24T12:10:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4395,27 +4613,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075622", + "name": "sleep-5-parallel-cron-27075566", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:22:00.000Z" + "created": "2021-06-24T11:26:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4435,27 +4655,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075536", + "name": "sleep-5-parallel-cron-27075623", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T10:56:00.000Z" + "created": "2021-06-24T12:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4475,27 +4697,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075612", + "name": "sleep-30-fail-cron-27075608", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:12:00.000Z" + "created": "2021-06-24T12:08:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4517,7 +4741,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075619", + "name": "sleep-5-parallel-cron-27075625", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4527,15 +4751,17 @@ "desired": 5 }, "pods": { - "active": 4, + "active": 5, "failed": 0, - "succeeded": 16 + "succeeded": 11 }, "time": { - "created": "2021-06-24T12:19:00.000Z" + "created": "2021-06-24T12:25:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4555,27 +4781,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075638", + "name": "sleep-30-ok-cron-27075645", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:38:00.000Z" + "created": "2021-06-24T12:45:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4597,11 +4825,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075590", + "name": "sleep-30-fail-cron-27075602", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -4612,10 +4840,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:50:00.000Z" + "created": "2021-06-24T12:02:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4637,11 +4867,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075626", + "name": "sleep-30-fail-cron-27075593", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -4652,10 +4882,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:26:00.000Z" + "created": "2021-06-24T11:53:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4675,27 +4907,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075625", + "name": "sleep-30-fail-cron-27075586", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 11 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:25:00.000Z" + "created": "2021-06-24T11:46:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4717,7 +4951,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075603", + "name": "sleep-5-parallel-cron-27075616", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4732,10 +4966,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T12:03:00.000Z" + "created": "2021-06-24T12:16:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4757,11 +4993,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075643", + "name": "sleep-30-fail-cron-27075613", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -4772,10 +5008,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:43:00.000Z" + "created": "2021-06-24T12:13:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4795,27 +5033,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075548", + "name": "sleep-30-fail-cron-27075594", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:08:00.000Z" + "created": "2021-06-24T11:54:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4835,27 +5075,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075632", + "name": "sleep-30-fail-cron-27075584", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:32:00.000Z" + "created": "2021-06-24T11:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4877,7 +5119,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075637", + "name": "sleep-5-parallel-cron-27075627", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4889,13 +5131,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 2 + "succeeded": 15 }, "time": { - "created": "2021-06-24T12:37:00.000Z" + "created": "2021-06-24T12:27:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4917,7 +5161,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075628", + "name": "sleep-30-ok-cron-27075626", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4932,10 +5176,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:28:00.000Z" + "created": "2021-06-24T12:26:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4957,11 +5203,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075620", + "name": "sleep-30-ok-cron-27075632", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -4972,10 +5218,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:20:00.000Z" + "created": "2021-06-24T12:32:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4995,27 +5243,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075633", + "name": "sleep-5-parallel-cron-27075589", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:33:00.000Z" + "created": "2021-06-24T11:49:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5037,11 +5287,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075640", + "name": "sleep-30-fail-cron-27075611", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -5052,10 +5302,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:40:00.000Z" + "created": "2021-06-24T12:11:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5077,7 +5329,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075593", + "name": "sleep-5-parallel-cron-27075608", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5092,10 +5344,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:53:00.000Z" + "created": "2021-06-24T12:08:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5117,7 +5371,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075635", + "name": "sleep-5-parallel-cron-27075640", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5129,13 +5383,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 1 }, "time": { - "created": "2021-06-24T12:35:00.000Z" + "created": "2021-06-24T12:40:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5155,27 +5411,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075554", + "name": "sleep-5-parallel-cron-27075624", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 7 }, "time": { - "created": "2021-06-24T11:14:00.000Z" + "created": "2021-06-24T12:24:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5197,11 +5455,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075609", + "name": "sleep-30-ok-cron-27075623", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -5212,10 +5470,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:09:00.000Z" + "created": "2021-06-24T12:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5237,11 +5497,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075633", + "name": "sleep-30-fail-cron-27075535", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -5252,10 +5512,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:33:00.000Z" + "created": "2021-06-24T10:55:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5277,7 +5539,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075557", + "name": "sleep-5-parallel-cron-27075593", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5292,10 +5554,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:17:00.000Z" + "created": "2021-06-24T11:53:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5317,7 +5581,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075608", + "name": "sleep-30-fail-cron-27075616", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5332,10 +5596,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:08:00.000Z" + "created": "2021-06-24T12:16:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5355,27 +5621,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075636", + "name": "sleep-5-parallel-cron-27075557", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:36:00.000Z" + "created": "2021-06-24T11:17:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5395,27 +5663,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075610", + "name": "sleep-5-parallel-cron-27075571", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:10:00.000Z" + "created": "2021-06-24T11:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5437,7 +5707,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075632", + "name": "sleep-30-fail-cron-27075631", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5452,10 +5722,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:32:00.000Z" + "created": "2021-06-24T12:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5475,27 +5747,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075594", + "name": "sleep-30-fail-cron-27075635", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 9 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:54:00.000Z" + "created": "2021-06-24T12:35:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5515,27 +5789,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075584", + "name": "sleep-30-fail-cron-27075601", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:44:00.000Z" + "created": "2021-06-24T12:01:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5555,27 +5831,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075614", + "name": "sleep-30-fail-cron-27075627", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 15 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:14:00.000Z" + "created": "2021-06-24T12:27:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5595,27 +5873,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075638", + "name": "sleep-5-parallel-cron-27075617", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:38:00.000Z" + "created": "2021-06-24T12:17:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5635,27 +5915,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075576", + "name": "sleep-5-parallel-cron-27075599", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { - "created": "2021-06-24T11:36:00.000Z" + "created": "2021-06-24T11:59:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5677,7 +5959,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075626", + "name": "sleep-30-fail-cron-27075624", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5692,10 +5974,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:26:00.000Z" + "created": "2021-06-24T12:24:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5717,11 +6001,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075563", + "name": "sleep-30-ok-cron-27075635", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -5732,10 +6016,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:23:00.000Z" + "created": "2021-06-24T12:35:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5757,11 +6043,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075646", + "name": "sleep-30-ok-cron-27075601", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -5772,10 +6058,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:46:00.000Z" + "created": "2021-06-24T12:01:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5797,7 +6085,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075532", + "name": "sleep-5-parallel-cron-27075629", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5807,15 +6095,17 @@ "desired": 5 }, "pods": { - "active": 2, + "active": 5, "failed": 0, - "succeeded": 18 + "succeeded": 6 }, "time": { - "created": "2021-06-24T10:52:00.000Z" + "created": "2021-06-24T12:29:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5835,27 +6125,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075613", + "name": "sleep-5-parallel-cron-27075563", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:13:00.000Z" + "created": "2021-06-24T11:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5875,27 +6167,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075599", + "name": "sleep-30-fail-cron-27075626", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 2 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:59:00.000Z" + "created": "2021-06-24T12:26:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5915,27 +6209,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075589", + "name": "sleep-30-ok-cron-27075644", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:49:00.000Z" + "created": "2021-06-24T12:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5955,27 +6251,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075644", + "name": "sleep-5-parallel-cron-27075590", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:44:00.000Z" + "created": "2021-06-24T11:50:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5997,11 +6295,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075594", + "name": "sleep-30-fail-cron-27075621", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -6012,10 +6310,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:54:00.000Z" + "created": "2021-06-24T12:21:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6035,27 +6335,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075629", + "name": "sleep-5-parallel-cron-27075619", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 4, "failed": 0, - "succeeded": 0 + "succeeded": 16 }, "time": { - "created": "2021-06-24T12:29:00.000Z" + "created": "2021-06-24T12:19:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -6075,27 +6377,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075642", + "name": "sleep-30-fail-cron-27075617", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:42:00.000Z" + "created": "2021-06-24T12:17:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6117,7 +6421,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075603", + "name": "sleep-30-fail-cron-27075639", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6132,10 +6436,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:03:00.000Z" + "created": "2021-06-24T12:39:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6157,7 +6463,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075623", + "name": "sleep-30-fail-cron-27075637", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6172,10 +6478,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:23:00.000Z" + "created": "2021-06-24T12:37:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6197,7 +6505,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075586", + "name": "sleep-30-fail-cron-27075623", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6212,10 +6520,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:46:00.000Z" + "created": "2021-06-24T12:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6235,27 +6545,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075630", + "name": "sleep-5-parallel-cron-27075638", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:30:00.000Z" + "created": "2021-06-24T12:38:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -6277,7 +6589,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075618", + "name": "sleep-5-parallel-cron-27075633", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6287,15 +6599,17 @@ "desired": 5 }, "pods": { - "active": 2, + "active": 5, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:18:00.000Z" + "created": "2021-06-24T12:33:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -6315,27 +6629,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075592", + "name": "sleep-5-parallel-cron-27075564", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T11:52:00.000Z" + "created": "2021-06-24T11:24:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", diff --git a/metricbeat/module/kubernetes/state_job/state_job.go b/metricbeat/module/kubernetes/state_job/state_job.go index 1b072eae742b..bfad2bcba8b8 100644 --- a/metricbeat/module/kubernetes/state_job/state_job.go +++ b/metricbeat/module/kubernetes/state_job/state_job.go @@ -65,7 +65,7 @@ var ( Labels: map[string]p.LabelMap{ // Jobs are uniquely identified by the combination of name and namespace. "job_name": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), // Add owner information provided by the "kube_job_owner" InfoMetric. "owner_kind": p.Label("owner.kind"), "owner_name": p.Label("owner.name"), diff --git a/metricbeat/module/kubernetes/state_job/state_job_integration_test.go b/metricbeat/module/kubernetes/state_job/state_job_integration_test.go index 7d75d72d4718..fb61db609ef8 100644 --- a/metricbeat/module/kubernetes/state_job/state_job_integration_test.go +++ b/metricbeat/module/kubernetes/state_job/state_job_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_job diff --git a/metricbeat/module/kubernetes/state_job/state_job_test.go b/metricbeat/module/kubernetes/state_job/state_job_test.go index 9b642b44cd21..9eab13ec6260 100644 --- a/metricbeat/module/kubernetes/state_job/state_job_test.go +++ b/metricbeat/module/kubernetes/state_job/state_job_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_job diff --git a/metricbeat/module/kubernetes/state_node/state_node_integration_test.go b/metricbeat/module/kubernetes/state_node/state_node_integration_test.go index 13b9af0f929a..835d287a1958 100644 --- a/metricbeat/module/kubernetes/state_node/state_node_integration_test.go +++ b/metricbeat/module/kubernetes/state_node/state_node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_node diff --git a/metricbeat/module/kubernetes/state_node/state_node_test.go b/metricbeat/module/kubernetes/state_node/state_node_test.go index f64564ef6dc8..4689cedef1dc 100644 --- a/metricbeat/module/kubernetes/state_node/state_node_test.go +++ b/metricbeat/module/kubernetes/state_node/state_node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_node diff --git a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go index 7840febd3379..d503a13871de 100644 --- a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_persistentvolume diff --git a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go index 26c74643ce1d..8cdeb8f00ecd 100644 --- a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_persistentvolume diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected index 1bafc31a84c6..fbc1e75a94ec 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected @@ -5,7 +5,9 @@ "labels": { "app": "mysql-server" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", @@ -30,15 +32,12 @@ }, { "RootFields": {}, - "ModuleFields": { - "namespace": "default" - }, + "ModuleFields": null, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "prometheus-data", - "phase": "Pending", - "storage_class": "rbd", - "volume_name": "pvc-prometheus-data" + "name": "mongo-data", + "phase": "Lost", + "storage_class": "\u003cnone\u003e" }, "Index": "", "ID": "", @@ -53,12 +52,17 @@ }, { "RootFields": {}, - "ModuleFields": null, + "ModuleFields": { + "namespace": { + "name": "default" + } + }, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "mongo-data", - "phase": "Lost", - "storage_class": "\u003cnone\u003e" + "name": "prometheus-data", + "phase": "Pending", + "storage_class": "rbd", + "volume_name": "pvc-prometheus-data" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected index e5c4c21bd2f1..925b651362ed 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected @@ -5,17 +5,19 @@ "labels": { "app": "nginx" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "www-web-0", + "name": "www-web-1", "phase": "Bound", "request_storage": { "bytes": 1073741824 }, "storage_class": "standard", - "volume_name": "pvc-c87e31f9-f853-4b20-b5db-fc41466c8b56" + "volume_name": "pvc-539a19cf-ea44-43a4-84c5-4acca3f9b583" }, "Index": "", "ID": "", @@ -34,17 +36,19 @@ "labels": { "app": "nginx" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "www-web-1", + "name": "www-web-0", "phase": "Bound", "request_storage": { "bytes": 1073741824 }, "storage_class": "standard", - "volume_name": "pvc-539a19cf-ea44-43a4-84c5-4acca3f9b583" + "volume_name": "pvc-c87e31f9-f853-4b20-b5db-fc41466c8b56" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected index 09a2c61e7890..dc1ada939b51 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go index 3cf414c498a4..15072c5710c7 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go @@ -69,7 +69,7 @@ func NewpersistentvolumeclaimMetricSet(base mb.BaseMetricSet) (mb.MetricSet, err "kube_persistentvolumeclaim_status_phase": p.LabelMetric("phase", "phase"), }, Labels: map[string]p.LabelMap{ - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "persistentvolumeclaim": p.KeyLabel("name"), "storageclass": p.Label("storage_class"), "volumename": p.Label("volume_name"), diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go index 24529123d5dd..c944b7d4ed48 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_persistentvolumeclaim diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go index b387971dc3a2..97a8b0dad6f5 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_persistentvolumeclaim diff --git a/metricbeat/module/kubernetes/state_pod/_meta/data.json b/metricbeat/module/kubernetes/state_pod/_meta/data.json index 474341cacd37..2a002a1470ea 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/data.json +++ b/metricbeat/module/kubernetes/state_pod/_meta/data.json @@ -6,14 +6,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "jenkins" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.2", - "name": "tiller-deploy-3067024529-9lpmb", + "ip": "172.17.0.7", + "name": "wise-lynx-jenkins-1616735317-svn6k", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected index b47439bb83e9..b8ffd59a24ba 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected @@ -2,15 +2,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "10.0.2.15", - "name": "kube-scheduler-minikube", + "ip": "172.17.0.5", + "name": "kube-state-metrics-6479d88c5c-5b6cl", "status": { "phase": "running", "ready": "true", @@ -31,7 +33,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -39,7 +43,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "kube-apiserver-minikube", + "name": "kube-proxy-znhg6", "status": { "phase": "running", "ready": "true", @@ -60,7 +64,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -68,7 +74,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "kube-addon-manager-minikube", + "name": "kube-controller-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -89,15 +95,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "172.17.0.3", - "name": "kubernetes-dashboard-77d8b98585-vqtzm", + "ip": "10.0.2.15", + "name": "storage-provisioner", "status": { "phase": "running", "ready": "true", @@ -118,15 +126,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "172.17.0.2", - "name": "kube-dns-6f4fd4bdf-wlmht", + "ip": "10.0.2.15", + "name": "etcd-minikube", "status": { "phase": "running", "ready": "true", @@ -147,15 +157,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "10.0.2.15", - "name": "kube-controller-manager-minikube", + "ip": "172.17.0.2", + "name": "kube-dns-6f4fd4bdf-wlmht", "status": { "phase": "running", "ready": "true", @@ -176,15 +188,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "10.0.2.15", - "name": "storage-provisioner", + "ip": "172.17.0.3", + "name": "kubernetes-dashboard-77d8b98585-vqtzm", "status": { "phase": "running", "ready": "true", @@ -205,7 +219,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -213,7 +229,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "etcd-minikube", + "name": "kube-scheduler-minikube", "status": { "phase": "running", "ready": "true", @@ -234,15 +250,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "172.17.0.5", - "name": "kube-state-metrics-6479d88c5c-5b6cl", + "ip": "10.0.2.15", + "name": "kube-addon-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -263,7 +281,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -271,7 +291,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "kube-proxy-znhg6", + "name": "kube-apiserver-minikube", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected index 3048bed3e487..8e4e7e974171 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected @@ -2,18 +2,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.7", - "name": "hello-1578512100-vr7wj", + "ip": "192.168.64.6", + "name": "kube-scheduler-minikube", "status": { - "phase": "succeeded", - "ready": "false", + "phase": "running", + "ready": "true", "scheduled": "true" } }, @@ -31,15 +33,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "etcd-minikube", + "ip": "172.17.0.6", + "name": "web-1", "status": { "phase": "running", "ready": "true", @@ -60,15 +64,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.6", - "name": "web-1", + "ip": "192.168.64.6", + "name": "kube-addon-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -89,15 +95,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.2", - "name": "coredns-5644d7b6d9-fhwjd", + "ip": "172.17.0.3", + "name": "coredns-5644d7b6d9-k6wsp", "status": { "phase": "running", "ready": "true", @@ -118,15 +126,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.5", - "name": "web-0", + "ip": "192.168.64.6", + "name": "storage-provisioner", "status": { "phase": "running", "ready": "true", @@ -147,7 +157,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -155,7 +167,7 @@ "MetricSetFields": { "host_ip": "192.168.64.6", "ip": "192.168.64.6", - "name": "kube-proxy-dwg6l", + "name": "kube-controller-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -176,7 +188,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -184,7 +198,7 @@ "MetricSetFields": { "host_ip": "192.168.64.6", "ip": "192.168.64.6", - "name": "kube-scheduler-minikube", + "name": "kube-apiserver-minikube", "status": { "phase": "running", "ready": "true", @@ -205,15 +219,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "kube-addon-manager-minikube", + "ip": "172.17.0.4", + "name": "kube-state-metrics-898d4db8d-dqmtg", "status": { "phase": "running", "ready": "true", @@ -234,15 +250,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.3", - "name": "coredns-5644d7b6d9-k6wsp", + "ip": "172.17.0.5", + "name": "web-0", "status": { "phase": "running", "ready": "true", @@ -263,7 +281,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -271,7 +291,7 @@ "MetricSetFields": { "host_ip": "192.168.64.6", "ip": "192.168.64.6", - "name": "storage-provisioner", + "name": "kube-proxy-dwg6l", "status": { "phase": "running", "ready": "true", @@ -292,18 +312,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "kube-controller-manager-minikube", + "ip": "172.17.0.7", + "name": "hello-1578512100-vr7wj", "status": { - "phase": "running", - "ready": "true", + "phase": "succeeded", + "ready": "false", "scheduled": "true" } }, @@ -321,15 +343,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "kube-apiserver-minikube", + "ip": "172.17.0.2", + "name": "coredns-5644d7b6d9-fhwjd", "status": { "phase": "running", "ready": "true", @@ -350,15 +374,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.4", - "name": "kube-state-metrics-898d4db8d-dqmtg", + "ip": "192.168.64.6", + "name": "etcd-minikube", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected index 9ee91db17f40..865ffcf64496 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" } @@ -10,7 +12,7 @@ "MetricSetFields": { "host_ip": "172.20.0.4", "ip": "172.20.0.4", - "name": "kube-proxy-22znl", + "name": "metricbeat-bvr2v", "status": { "phase": "running", "ready": "true", @@ -31,15 +33,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-worker2" + "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "10.244.1.2", - "name": "redis", + "host_ip": "172.20.0.4", + "ip": "10.244.2.3", + "name": "hello-python-566b5479f5-ndwdl", "status": { "phase": "running", "ready": "true", @@ -60,15 +64,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } }, "MetricSetFields": { "host_ip": "172.20.0.2", - "ip": "10.244.0.3", - "name": "coredns-5644d7b6d9-zgdsx", + "ip": "172.20.0.2", + "name": "kube-proxy-cm525", "status": { "phase": "running", "ready": "true", @@ -89,15 +95,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } }, "MetricSetFields": { "host_ip": "172.20.0.2", - "ip": "10.244.0.2", - "name": "coredns-5644d7b6d9-nnwmb", + "ip": "172.20.0.2", + "name": "kube-scheduler-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -118,15 +126,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-worker2" } }, "MetricSetFields": { - "host_ip": "172.20.0.4", - "ip": "172.20.0.4", - "name": "kindnet-9fgst", + "host_ip": "172.20.0.3", + "ip": "172.20.0.3", + "name": "metricbeat-55fp7", "status": { "phase": "running", "ready": "true", @@ -147,15 +157,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "kind-worker2" } }, "MetricSetFields": { "host_ip": "172.20.0.3", - "ip": "172.20.0.3", - "name": "kube-proxy-lf6md", + "ip": "10.244.1.2", + "name": "redis", "status": { "phase": "running", "ready": "true", @@ -176,15 +188,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "kube-controller-manager-kind-control-plane", + "host_ip": "172.20.0.4", + "ip": "10.244.2.2", + "name": "kube-state-metrics-f655d484d-hj69w", "status": { "phase": "running", "ready": "true", @@ -205,7 +219,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } @@ -213,7 +229,7 @@ "MetricSetFields": { "host_ip": "172.20.0.2", "ip": "172.20.0.2", - "name": "kube-apiserver-kind-control-plane", + "name": "kindnet-kch2v", "status": { "phase": "running", "ready": "true", @@ -234,15 +250,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "etcd-kind-control-plane", + "host_ip": "172.20.0.3", + "ip": "172.20.0.3", + "name": "kindnet-tg7tl", "status": { "phase": "running", "ready": "true", @@ -263,15 +281,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" } }, "MetricSetFields": { "host_ip": "172.20.0.4", - "ip": "10.244.2.3", - "name": "hello-python-566b5479f5-ndwdl", + "ip": "172.20.0.4", + "name": "kindnet-9fgst", "status": { "phase": "running", "ready": "true", @@ -292,7 +312,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } @@ -300,7 +322,7 @@ "MetricSetFields": { "host_ip": "172.20.0.2", "ip": "172.20.0.2", - "name": "kube-proxy-cm525", + "name": "kube-controller-manager-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -321,15 +343,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "local-path-storage", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } }, "MetricSetFields": { "host_ip": "172.20.0.2", - "ip": "10.244.0.4", - "name": "local-path-provisioner-5bf465b47d-h8hjn", + "ip": "172.20.0.2", + "name": "kube-apiserver-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -350,15 +374,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.4", - "ip": "10.244.2.2", - "name": "kube-state-metrics-f655d484d-hj69w", + "host_ip": "172.20.0.2", + "ip": "172.20.0.2", + "name": "etcd-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -379,18 +405,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "kube-scheduler-kind-control-plane", + "host_ip": "172.20.0.3", + "ip": "10.244.2.2", + "name": "hello-zf6gh", "status": { - "phase": "running", - "ready": "true", + "phase": "succeeded", + "ready": "false", "scheduled": "true" } }, @@ -408,18 +436,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "10.244.2.2", - "name": "hello-zf6gh", + "host_ip": "172.20.0.4", + "ip": "172.20.0.4", + "name": "kube-proxy-22znl", "status": { - "phase": "succeeded", - "ready": "false", + "phase": "running", + "ready": "true", "scheduled": "true" } }, @@ -437,15 +467,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "kindnet-kch2v", + "host_ip": "172.20.0.3", + "ip": "172.20.0.3", + "name": "kube-proxy-lf6md", "status": { "phase": "running", "ready": "true", @@ -466,15 +498,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "local-path-storage" + }, "node": { - "name": "kind-worker2" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "172.20.0.3", - "name": "metricbeat-55fp7", + "host_ip": "172.20.0.2", + "ip": "10.244.0.4", + "name": "local-path-provisioner-5bf465b47d-h8hjn", "status": { "phase": "running", "ready": "true", @@ -495,15 +529,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.4", - "ip": "172.20.0.4", - "name": "metricbeat-bvr2v", + "host_ip": "172.20.0.2", + "ip": "10.244.0.3", + "name": "coredns-5644d7b6d9-zgdsx", "status": { "phase": "running", "ready": "true", @@ -524,15 +560,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker2" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "172.20.0.3", - "name": "kindnet-tg7tl", + "host_ip": "172.20.0.2", + "ip": "10.244.0.2", + "name": "coredns-5644d7b6d9-nnwmb", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json index 09de4a43609d..7816dfea70f8 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json @@ -6,14 +6,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "jenkins" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.2", - "name": "tiller-deploy-3067024529-9lpmb", + "ip": "172.17.0.7", + "name": "wise-lynx-jenkins-1616735317-svn6k", "status": { "phase": "running", "ready": "true", @@ -37,14 +39,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.3", - "name": "kube-state-metrics-1303537707-7ncd1", + "ip": "172.17.0.6", + "name": "kube-dns-v20-5g5cb", "status": { "phase": "running", "ready": "true", @@ -68,7 +72,9 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, @@ -99,18 +105,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "test", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "minikube-test" + "name": "minikube" }, "pod": { - "host_ip": "192.168.99.200", - "ip": "172.17.0.5", - "name": "jumpy-owl-redis-3481028193-s78x9", + "host_ip": "192.168.99.100", + "ip": "172.17.0.3", + "name": "kube-state-metrics-1303537707-7ncd1", "status": { "phase": "running", "ready": "true", - "scheduled": "false" + "scheduled": "true" } } }, @@ -130,18 +138,14 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "jenkins", - "node": { - "name": "minikube" + "namespace": { + "name": "kube-system" }, "pod": { - "host_ip": "192.168.99.100", - "ip": "172.17.0.7", - "name": "wise-lynx-jenkins-1616735317-svn6k", + "name": "kube-state-metrics-1303537707-mnzbp", "status": { - "phase": "running", - "ready": "true", - "scheduled": "true" + "phase": "pending", + "scheduled": "false" } } }, @@ -161,12 +165,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, + "node": { + "name": "minikube" + }, "pod": { - "name": "kube-state-metrics-1303537707-mnzbp", + "host_ip": "192.168.99.100", + "ip": "172.17.0.5", + "name": "kubernetes-dashboard-vw0l6", "status": { - "phase": "pending", - "scheduled": "false" + "phase": "running", + "ready": "true", + "scheduled": "true" } } }, @@ -186,18 +198,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "test" + }, "node": { - "name": "minikube" + "name": "minikube-test" }, "pod": { - "host_ip": "192.168.99.100", - "ip": "172.17.0.6", - "name": "kube-dns-v20-5g5cb", + "host_ip": "192.168.99.200", + "ip": "172.17.0.5", + "name": "jumpy-owl-redis-3481028193-s78x9", "status": { "phase": "running", "ready": "true", - "scheduled": "true" + "scheduled": "false" } } }, @@ -217,14 +231,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.5", - "name": "kubernetes-dashboard-vw0l6", + "ip": "172.17.0.2", + "name": "tiller-deploy-3067024529-9lpmb", "status": { "phase": "running", "ready": "true", @@ -248,7 +264,9 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, diff --git a/metricbeat/module/kubernetes/state_pod/state_pod.go b/metricbeat/module/kubernetes/state_pod/state_pod.go index ea742ab26bd1..e4bd290850b4 100644 --- a/metricbeat/module/kubernetes/state_pod/state_pod.go +++ b/metricbeat/module/kubernetes/state_pod/state_pod.go @@ -49,7 +49,7 @@ var ( Labels: map[string]p.LabelMap{ "pod": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "node": p.Label(mb.ModuleDataKey + ".node.name"), "pod_ip": p.Label("ip"), diff --git a/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go b/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go index c269092f067f..1b352f46ec13 100644 --- a/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go +++ b/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_pod diff --git a/metricbeat/module/kubernetes/state_pod/state_pod_test.go b/metricbeat/module/kubernetes/state_pod/state_pod_test.go index 9b8920ac0209..d1e206019c7a 100644 --- a/metricbeat/module/kubernetes/state_pod/state_pod_test.go +++ b/metricbeat/module/kubernetes/state_pod/state_pod_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_pod diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/data.json b/metricbeat/module/kubernetes/state_replicaset/_meta/data.json index f4441104d6bf..0c1091c8ad5c 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/data.json +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/data.json @@ -6,15 +6,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "jenkins" + }, "replicaset": { - "name": "jumpy-owl-redis-3481028193", + "name": "wise-lynx-jenkins-1616735317", "replicas": { "available": 1, "desired": 1, "labeled": 1, "observed": 1, - "ready": 0 + "ready": 1 } } }, diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected index 1705a5a87dc3..c8a26911c7b8 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kubernetes-dashboard-77d8b98585", + "name": "kube-state-metrics-6479d88c5c", "replicas": { "available": 1, "desired": 1, @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics-6479d88c5c", + "name": "kube-state-metrics-86dd856df7", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, - "observed": 1, - "ready": 1 + "available": 0, + "desired": 0, + "labeled": 0, + "observed": 2, + "ready": 0 } }, "Index": "", @@ -54,7 +58,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kube-dns-6f4fd4bdf", @@ -80,16 +86,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics-86dd856df7", + "name": "kubernetes-dashboard-77d8b98585", "replicas": { - "available": 0, - "desired": 0, - "labeled": 0, - "observed": 2, - "ready": 0 + "available": 1, + "desired": 1, + "labeled": 1, + "observed": 1, + "ready": 1 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected index d292785f4589..9cc72c20d214 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected @@ -2,16 +2,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "coredns-5644d7b6d9", + "name": "kube-state-metrics-898d4db8d", "replicas": { - "available": 2, - "desired": 2, - "labeled": 2, + "available": 1, + "desired": 1, + "labeled": 1, "observed": 1, - "ready": 2 + "ready": 1 } }, "Index": "", @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics-898d4db8d", + "name": "coredns-5644d7b6d9", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, + "available": 2, + "desired": 2, + "labeled": 2, "observed": 1, - "ready": 1 + "ready": 2 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected index fb06db2106b0..229e8e3f5dbb 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "name": "kube-state-metrics-f655d484d", + "name": "hello-python-566b5479f5", "replicas": { "available": 1, "desired": 1, @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "hello-python-566b5479f5", + "name": "coredns-5644d7b6d9", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, + "available": 2, + "desired": 2, + "labeled": 2, "observed": 1, - "ready": 1 + "ready": 2 } }, "Index": "", @@ -54,16 +58,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "local-path-storage" + } }, "MetricSetFields": { - "name": "coredns-5644d7b6d9", + "name": "local-path-provisioner-5bf465b47d", "replicas": { - "available": 2, - "desired": 2, - "labeled": 2, + "available": 1, + "desired": 1, + "labeled": 1, "observed": 1, - "ready": 2 + "ready": 1 } }, "Index": "", @@ -80,10 +86,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "local-path-storage" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "local-path-provisioner-5bf465b47d", + "name": "kube-state-metrics-f655d484d", "replicas": { "available": 1, "desired": 1, diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json index cfdafbd4cc39..72df48f77e8c 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json @@ -6,15 +6,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "jenkins" + }, "replicaset": { - "name": "jumpy-owl-redis-3481028193", + "name": "wise-lynx-jenkins-1616735317", "replicas": { "available": 1, "desired": 1, "labeled": 1, "observed": 1, - "ready": 0 + "ready": 1 } } }, @@ -34,15 +36,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "test", + "namespace": { + "name": "kube-system" + }, "replicaset": { - "name": "kube-state-metrics-1303537707", + "name": "tiller-deploy-3067024529", "replicas": { - "available": 7, - "desired": 3, - "labeled": 4, - "observed": 5, - "ready": 6 + "available": 1, + "desired": 1, + "labeled": 1, + "observed": 1, + "ready": 1 } } }, @@ -62,15 +66,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "test" + }, "replicaset": { "name": "kube-state-metrics-1303537707", "replicas": { - "available": 2, - "desired": 2, - "labeled": 2, - "observed": 1, - "ready": 1 + "available": 7, + "desired": 3, + "labeled": 4, + "observed": 5, + "ready": 6 } } }, @@ -90,15 +96,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "jenkins", + "namespace": { + "name": "default" + }, "replicaset": { - "name": "wise-lynx-jenkins-1616735317", + "name": "jumpy-owl-redis-3481028193", "replicas": { "available": 1, "desired": 1, "labeled": 1, "observed": 1, - "ready": 1 + "ready": 0 } } }, @@ -118,13 +126,15 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "replicaset": { - "name": "tiller-deploy-3067024529", + "name": "kube-state-metrics-1303537707", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, + "available": 2, + "desired": 2, + "labeled": 2, "observed": 1, "ready": 1 } diff --git a/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go b/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go index 7ee8e62864ae..5a28a237a771 100644 --- a/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go +++ b/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go @@ -51,7 +51,7 @@ var ( Labels: map[string]p.LabelMap{ "replicaset": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go index c8b551927069..ad50e8c41539 100644 --- a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go +++ b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_replicaset diff --git a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go index e8ca09f7699a..b8f051a7dc90 100644 --- a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go +++ b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_replicaset diff --git a/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected index 071423392dc7..5946cf6c8cb8 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected @@ -2,12 +2,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 10, - "resource": "services", + "quota": 20, + "resource": "replicationcontrollers", "type": "hard" }, "Index": "", @@ -24,13 +26,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 0, - "resource": "replicationcontrollers", - "type": "used" + "quota": 4, + "resource": "pods", + "type": "hard" }, "Index": "", "ID": "", @@ -46,13 +50,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 0, - "resource": "requests.memory", - "type": "used" + "name": "object-counts", + "quota": 10, + "resource": "configmaps", + "type": "hard" }, "Index": "", "ID": "", @@ -68,13 +74,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "created": { - "sec": 1578507202 - }, - "name": "compute-resources" + "name": "object-counts", + "quota": 4, + "resource": "persistentvolumeclaims", + "type": "hard" }, "Index": "", "ID": "", @@ -90,12 +98,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "compute-resources", - "quota": 2147483648, - "resource": "limits.memory", + "quota": 1073741824, + "resource": "requests.memory", "type": "hard" }, "Index": "", @@ -112,13 +122,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 4, + "quota": 0, "resource": "persistentvolumeclaims", - "type": "hard" + "type": "used" }, "Index": "", "ID": "", @@ -134,13 +146,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "compute-resources", - "quota": 1073741824, - "resource": "requests.memory", - "type": "hard" + "quota": 0, + "resource": "limits.memory", + "type": "used" }, "Index": "", "ID": "", @@ -156,13 +170,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 0, - "resource": "persistentvolumeclaims", - "type": "used" + "quota": 10, + "resource": "services", + "type": "hard" }, "Index": "", "ID": "", @@ -178,13 +194,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 4, - "resource": "pods", - "type": "hard" + "name": "compute-resources", + "quota": 0, + "resource": "requests.memory", + "type": "used" }, "Index": "", "ID": "", @@ -200,13 +218,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 20, + "quota": 0, "resource": "replicationcontrollers", - "type": "hard" + "type": "used" }, "Index": "", "ID": "", @@ -222,12 +242,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 10, - "resource": "configmaps", + "name": "compute-resources", + "quota": 2147483648, + "resource": "limits.memory", "type": "hard" }, "Index": "", @@ -244,13 +266,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 0, - "resource": "limits.memory", - "type": "used" + "created": { + "sec": 1578507202 + }, + "name": "compute-resources" }, "Index": "", "ID": "", @@ -266,13 +290,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 10, - "resource": "secrets", - "type": "hard" + "created": { + "sec": 1578507217 + }, + "name": "object-counts" }, "Index": "", "ID": "", @@ -288,12 +314,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", + "name": "compute-resources", "quota": 0, - "resource": "services", + "resource": "requests.nvidia.com/gpu", "type": "used" }, "Index": "", @@ -310,13 +338,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 2, - "resource": "services.loadbalancers", - "type": "hard" + "quota": 1, + "resource": "secrets", + "type": "used" }, "Index": "", "ID": "", @@ -332,12 +362,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", + "name": "object-counts", "quota": 0, - "resource": "limits.cpu", + "resource": "pods", "type": "used" }, "Index": "", @@ -354,13 +386,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 0, - "resource": "configmaps", - "type": "used" + "name": "compute-resources", + "quota": 1, + "resource": "requests.cpu", + "type": "hard" }, "Index": "", "ID": "", @@ -376,13 +410,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 1, - "resource": "secrets", - "type": "used" + "name": "compute-resources", + "quota": 4, + "resource": "requests.nvidia.com/gpu", + "type": "hard" }, "Index": "", "ID": "", @@ -398,13 +434,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 0, - "resource": "pods", - "type": "used" + "name": "compute-resources", + "quota": 2, + "resource": "limits.cpu", + "type": "hard" }, "Index": "", "ID": "", @@ -420,12 +458,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", + "name": "object-counts", "quota": 0, - "resource": "requests.nvidia.com/gpu", + "resource": "services.loadbalancers", "type": "used" }, "Index": "", @@ -442,13 +482,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "created": { - "sec": 1578507217 - }, - "name": "object-counts" + "name": "compute-resources", + "quota": 0, + "resource": "requests.cpu", + "type": "used" }, "Index": "", "ID": "", @@ -464,13 +506,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 0, - "resource": "services.loadbalancers", - "type": "used" + "quota": 10, + "resource": "secrets", + "type": "hard" }, "Index": "", "ID": "", @@ -486,13 +530,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 2, - "resource": "limits.cpu", - "type": "hard" + "name": "object-counts", + "quota": 0, + "resource": "services", + "type": "used" }, "Index": "", "ID": "", @@ -508,13 +554,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 0, - "resource": "requests.cpu", - "type": "used" + "name": "object-counts", + "quota": 2, + "resource": "services.loadbalancers", + "type": "hard" }, "Index": "", "ID": "", @@ -530,13 +578,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 1, - "resource": "requests.cpu", - "type": "hard" + "name": "object-counts", + "quota": 0, + "resource": "configmaps", + "type": "used" }, "Index": "", "ID": "", @@ -552,13 +602,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "compute-resources", - "quota": 4, - "resource": "requests.nvidia.com/gpu", - "type": "hard" + "quota": 0, + "resource": "limits.cpu", + "type": "used" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go index eb8bc6ddf352..5fb72e5b5773 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go +++ b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go @@ -63,7 +63,7 @@ func NewResourceQuotaMetricSet(base mb.BaseMetricSet) (mb.MetricSet, error) { "kube_resourcequota": p.Metric("quota"), }, Labels: map[string]p.LabelMap{ - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "resourcequota": p.KeyLabel("name"), "resource": p.KeyLabel("resource"), diff --git a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go index 0d3bff3f7063..36269d84c57c 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go +++ b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_resourcequota diff --git a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go index 00eebbeb3898..d11709383999 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go +++ b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_resourcequota diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected index d0c0c46a4ad7..8f34da5871bd 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected @@ -3,15 +3,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example2" + "app": "example4" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "1.2.3.5", "created": "2017-07-14T02:40:00.000Z", - "name": "test-service2", - "type": "NodePort" + "external_name": "www.example.com", + "name": "test-service4", + "type": "ExternalName" }, "Index": "", "ID": "", @@ -28,16 +30,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example3" + "app": "example2" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "1.2.3.6", + "cluster_ip": "1.2.3.5", "created": "2017-07-14T02:40:00.000Z", - "load_balancer_ip": "1.2.3.7", - "name": "test-service3", - "type": "LoadBalancer" + "name": "test-service2", + "type": "NodePort" }, "Index": "", "ID": "", @@ -54,15 +57,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example5" + "app": "example3" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { + "cluster_ip": "1.2.3.6", "created": "2017-07-14T02:40:00.000Z", - "ingress_hostname": "www.example.com", - "ingress_ip": "1.2.3.8", - "name": "test-service5", + "load_balancer_ip": "1.2.3.7", + "name": "test-service3", "type": "LoadBalancer" }, "Index": "", @@ -80,15 +85,18 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example4" + "app": "example5" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": "2017-07-14T02:40:00.000Z", - "external_name": "www.example.com", - "name": "test-service4", - "type": "ExternalName" + "ingress_hostname": "www.example.com", + "ingress_ip": "1.2.3.8", + "name": "test-service5", + "type": "LoadBalancer" }, "Index": "", "ID": "", @@ -107,7 +115,9 @@ "labels": { "app": "example6" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": "2017-07-14T02:40:00.000Z", @@ -132,7 +142,9 @@ "labels": { "app": "example1" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "cluster_ip": "1.2.3.4", diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected index 5717193d8a25..8921833ee55d 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected @@ -3,18 +3,19 @@ "RootFields": null, "ModuleFields": { "labels": { - "addonmanager_kubernetes_io_mode": "Reconcile", - "app": "kubernetes-dashboard", - "kubernetes_io_minikube_addons": "dashboard", - "kubernetes_io_minikube_addons_endpoint": "dashboard" + "k8s_app": "kube-dns", + "kubernetes_io_cluster_service": "true", + "kubernetes_io_name": "KubeDNS" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "10.109.175.127", - "created": "2018-05-30T16:24:44.000Z", - "name": "kubernetes-dashboard", - "type": "NodePort" + "cluster_ip": "10.96.0.10", + "created": "2018-05-30T16:24:36.000Z", + "name": "kube-dns", + "type": "ClusterIP" }, "Index": "", "ID": "", @@ -31,16 +32,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "k8s_app": "kube-dns", - "kubernetes_io_cluster_service": "true", - "kubernetes_io_name": "KubeDNS" + "component": "apiserver", + "provider": "kubernetes" }, - "namespace": "kube-system" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.10", - "created": "2018-05-30T16:24:36.000Z", - "name": "kube-dns", + "cluster_ip": "10.96.0.1", + "created": "2018-05-30T16:24:29.000Z", + "name": "kubernetes", "type": "ClusterIP" }, "Index": "", @@ -58,16 +60,20 @@ "RootFields": null, "ModuleFields": { "labels": { - "component": "apiserver", - "provider": "kubernetes" + "addonmanager_kubernetes_io_mode": "Reconcile", + "app": "kubernetes-dashboard", + "kubernetes_io_minikube_addons": "dashboard", + "kubernetes_io_minikube_addons_endpoint": "dashboard" }, - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.1", - "created": "2018-05-30T16:24:29.000Z", - "name": "kubernetes", - "type": "ClusterIP" + "cluster_ip": "10.109.175.127", + "created": "2018-05-30T16:24:44.000Z", + "name": "kubernetes-dashboard", + "type": "NodePort" }, "Index": "", "ID": "", @@ -86,7 +92,9 @@ "labels": { "k8s_app": "kube-state-metrics" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "cluster_ip": "10.108.182.194", diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected index 9e7b4c7cd3b1..d56cabf40b5e 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected @@ -5,7 +5,9 @@ "labels": { "k8s_app": "kube-state-metrics" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "cluster_ip": "10.101.63.187", @@ -32,7 +34,9 @@ "kubernetes_io_cluster_service": "true", "kubernetes_io_name": "KubeDNS" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "cluster_ip": "10.96.0.10", @@ -55,14 +59,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "nginx" + "component": "apiserver", + "provider": "kubernetes" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "None", - "created": "2020-01-08T18:15:25.000Z", - "name": "nginx", + "cluster_ip": "10.96.0.1", + "created": "2020-01-07T16:11:02.000Z", + "name": "kubernetes", "type": "ClusterIP" }, "Index": "", @@ -80,15 +87,16 @@ "RootFields": null, "ModuleFields": { "labels": { - "component": "apiserver", - "provider": "kubernetes" + "app": "nginx" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.1", - "created": "2020-01-07T16:11:02.000Z", - "name": "kubernetes", + "cluster_ip": "None", + "created": "2020-01-08T18:15:25.000Z", + "name": "nginx", "type": "ClusterIP" }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected index 096ec78662dd..58c5637cf15d 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected @@ -2,12 +2,14 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.10", - "created": "2021-08-12T14:24:46.000Z", - "name": "kube-dns", + "cluster_ip": "None", + "created": "2021-08-23T13:04:03.000Z", + "name": "kube-state-metrics", "type": "ClusterIP" }, "Index": "", @@ -24,12 +26,14 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "None", - "created": "2021-08-23T13:04:03.000Z", - "name": "kube-state-metrics", + "cluster_ip": "10.96.0.10", + "created": "2021-08-12T14:24:46.000Z", + "name": "kube-dns", "type": "ClusterIP" }, "Index": "", @@ -46,7 +50,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "cluster_ip": "10.96.0.1", diff --git a/metricbeat/module/kubernetes/state_service/state_service.go b/metricbeat/module/kubernetes/state_service/state_service.go index 6794c36c44f7..e46ab08623af 100644 --- a/metricbeat/module/kubernetes/state_service/state_service.go +++ b/metricbeat/module/kubernetes/state_service/state_service.go @@ -75,7 +75,7 @@ func NewServiceMetricSet(base mb.BaseMetricSet) (mb.MetricSet, error) { "kube_service_status_load_balancer_ingress": p.InfoMetric(), }, Labels: map[string]p.LabelMap{ - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "service": p.KeyLabel("name"), "cluster_ip": p.Label("cluster_ip"), "external_name": p.Label("external_name"), diff --git a/metricbeat/module/kubernetes/state_service/state_service_integration_test.go b/metricbeat/module/kubernetes/state_service/state_service_integration_test.go index 895b4c6cd7de..177f07c0b59c 100644 --- a/metricbeat/module/kubernetes/state_service/state_service_integration_test.go +++ b/metricbeat/module/kubernetes/state_service/state_service_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_service diff --git a/metricbeat/module/kubernetes/state_service/state_service_test.go b/metricbeat/module/kubernetes/state_service/state_service_test.go index 017e5e402643..35af7c515fcd 100644 --- a/metricbeat/module/kubernetes/state_service/state_service_test.go +++ b/metricbeat/module/kubernetes/state_service/state_service_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_service diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/data.json b/metricbeat/module/kubernetes/state_statefulset/_meta/data.json index 776b4a48d937..96a170777923 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/data.json +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/data.json @@ -6,18 +6,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "statefulset": { - "created": 1511989697, + "created": 1511973651, "generation": { - "desired": 4, - "observed": 2 + "desired": 3, + "observed": 1 }, - "name": "mysql", + "name": "elasticsearch", "replicas": { - "desired": 5, - "observed": 2, - "ready": 2 + "desired": 4, + "observed": 1, + "ready": 1 } } }, diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected index d55d49a0b855..d2fe830a9f1d 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": 1629966737, diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected index a5c1c584229d..ae8659926a3e 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": 1578507325, diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json index 8ab015da0617..ef3ba87ef222 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json @@ -6,18 +6,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "statefulset": { - "created": 1511989697, + "created": 1511973651, "generation": { - "desired": 4, - "observed": 2 + "desired": 3, + "observed": 1 }, - "name": "mysql", + "name": "elasticsearch", "replicas": { - "desired": 5, - "observed": 2, - "ready": 2 + "desired": 4, + "observed": 1, + "ready": 1 } } }, @@ -37,7 +39,9 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "custom", + "namespace": { + "name": "custom" + }, "statefulset": { "created": 1511999697, "generation": { @@ -68,18 +72,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "statefulset": { - "created": 1511973651, + "created": 1511989697, "generation": { - "desired": 3, - "observed": 1 + "desired": 4, + "observed": 2 }, - "name": "elasticsearch", + "name": "mysql", "replicas": { - "desired": 4, - "observed": 1, - "ready": 1 + "desired": 5, + "observed": 2, + "ready": 2 } } }, diff --git a/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go b/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go index c2c021952065..59de9bfeff16 100644 --- a/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go +++ b/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go @@ -51,7 +51,7 @@ var ( Labels: map[string]p.LabelMap{ "statefulset": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go index bce92bc6ce3b..4c44d20d94b6 100644 --- a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go +++ b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_statefulset diff --git a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go index 75b7588de02d..0b75ed10edcc 100644 --- a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go +++ b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_statefulset diff --git a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go index 2db797d0ffb8..41499e73d31d 100644 --- a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go +++ b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_storageclass diff --git a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go index 7bcb2627837c..04b24e60b72d 100644 --- a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go +++ b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_storageclass diff --git a/metricbeat/module/kubernetes/system/system_integration_test.go b/metricbeat/module/kubernetes/system/system_integration_test.go index 5b876f0caffa..92dc2e795f6a 100644 --- a/metricbeat/module/kubernetes/system/system_integration_test.go +++ b/metricbeat/module/kubernetes/system/system_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package system diff --git a/metricbeat/module/kubernetes/system/system_test.go b/metricbeat/module/kubernetes/system/system_test.go index a38d8fd8760f..40201e9d81a6 100644 --- a/metricbeat/module/kubernetes/system/system_test.go +++ b/metricbeat/module/kubernetes/system/system_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package system diff --git a/metricbeat/module/kubernetes/util/kubernetes.go b/metricbeat/module/kubernetes/util/kubernetes.go index c037c327526e..58aab72f1ff7 100644 --- a/metricbeat/module/kubernetes/util/kubernetes.go +++ b/metricbeat/module/kubernetes/util/kubernetes.go @@ -191,7 +191,7 @@ func NewResourceMetadataEnricher( }, // index func(e common.MapStr) string { - return join(getString(e, mb.ModuleDataKey+".namespace"), getString(e, "name")) + return join(getString(e, mb.ModuleDataKey+".namespace.name"), getString(e, "name")) }, ) diff --git a/metricbeat/module/kubernetes/volume/data.go b/metricbeat/module/kubernetes/volume/data.go index 6170bbadbccc..03508a371557 100644 --- a/metricbeat/module/kubernetes/volume/data.go +++ b/metricbeat/module/kubernetes/volume/data.go @@ -40,7 +40,9 @@ func eventMapping(content []byte) ([]common.MapStr, error) { for _, volume := range pod.Volume { volumeEvent := common.MapStr{ mb.ModuleDataKey: common.MapStr{ - "namespace": pod.PodRef.Namespace, + "namespace": common.MapStr{ + "name": pod.PodRef.Namespace, + }, "node": common.MapStr{ "name": node.NodeName, }, diff --git a/metricbeat/module/kubernetes/volume/volume_integration_test.go b/metricbeat/module/kubernetes/volume/volume_integration_test.go index c0934a8cae09..79889d1f5a27 100644 --- a/metricbeat/module/kubernetes/volume/volume_integration_test.go +++ b/metricbeat/module/kubernetes/volume/volume_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package volume diff --git a/metricbeat/module/kubernetes/volume/volume_test.go b/metricbeat/module/kubernetes/volume/volume_test.go index 71ca971c5e5e..4e45ab7bc7b7 100644 --- a/metricbeat/module/kubernetes/volume/volume_test.go +++ b/metricbeat/module/kubernetes/volume/volume_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package volume diff --git a/metricbeat/module/linux/iostat/iostat_test.go b/metricbeat/module/linux/iostat/iostat_test.go index 6a607fc66d4a..be955e5fec4f 100644 --- a/metricbeat/module/linux/iostat/iostat_test.go +++ b/metricbeat/module/linux/iostat/iostat_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package iostat diff --git a/metricbeat/module/linux/pressure/pressure_test.go b/metricbeat/module/linux/pressure/pressure_test.go index 083efa9d0c0e..098b9fcbe762 100644 --- a/metricbeat/module/linux/pressure/pressure_test.go +++ b/metricbeat/module/linux/pressure/pressure_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package pressure diff --git a/metricbeat/module/logstash/logstash_integration_test.go b/metricbeat/module/logstash/logstash_integration_test.go index 62e92d429871..a5b45f7002fd 100644 --- a/metricbeat/module/logstash/logstash_integration_test.go +++ b/metricbeat/module/logstash/logstash_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package logstash_test diff --git a/metricbeat/module/logstash/node/data_test.go b/metricbeat/module/logstash/node/data_test.go index 9bc48d9f93b6..07a09ef4655d 100644 --- a/metricbeat/module/logstash/node/data_test.go +++ b/metricbeat/module/logstash/node/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/logstash/node_stats/data_test.go b/metricbeat/module/logstash/node_stats/data_test.go index ff69a8f20cee..585913493422 100644 --- a/metricbeat/module/logstash/node_stats/data_test.go +++ b/metricbeat/module/logstash/node_stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node_stats diff --git a/metricbeat/module/memcached/stats/stats_integration_test.go b/metricbeat/module/memcached/stats/stats_integration_test.go index 7c3a6222ae66..3ff727d22e42 100644 --- a/metricbeat/module/memcached/stats/stats_integration_test.go +++ b/metricbeat/module/memcached/stats/stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stats diff --git a/metricbeat/module/mongodb/collstats/collstats_integration_test.go b/metricbeat/module/mongodb/collstats/collstats_integration_test.go index 7d135fb51a35..656246db48cb 100644 --- a/metricbeat/module/mongodb/collstats/collstats_integration_test.go +++ b/metricbeat/module/mongodb/collstats/collstats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package collstats diff --git a/metricbeat/module/mongodb/collstats/data_test.go b/metricbeat/module/mongodb/collstats/data_test.go index 5c2c7ae36d51..4797c44d5c16 100644 --- a/metricbeat/module/mongodb/collstats/data_test.go +++ b/metricbeat/module/mongodb/collstats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collstats diff --git a/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go b/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go index 70c34006ac8d..bf5926a17b4d 100644 --- a/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go +++ b/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package dbstats diff --git a/metricbeat/module/mongodb/metrics/metrics_intergration_test.go b/metricbeat/module/mongodb/metrics/metrics_intergration_test.go index c5415356afbf..79c09a36f047 100644 --- a/metricbeat/module/mongodb/metrics/metrics_intergration_test.go +++ b/metricbeat/module/mongodb/metrics/metrics_intergration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package metrics diff --git a/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go b/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go index 12f010ee3540..78dbdf16d512 100644 --- a/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go +++ b/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package replstatus diff --git a/metricbeat/module/mongodb/status/status_integration_test.go b/metricbeat/module/mongodb/status/status_integration_test.go index 0d69a03d3f74..36dbe53987e0 100644 --- a/metricbeat/module/mongodb/status/status_integration_test.go +++ b/metricbeat/module/mongodb/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/munin/node/node_integration_test.go b/metricbeat/module/munin/node/node_integration_test.go index 2fd4f0396ae3..2fbd0f4b9ebe 100644 --- a/metricbeat/module/munin/node/node_integration_test.go +++ b/metricbeat/module/munin/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package node diff --git a/metricbeat/module/mysql/mysql_integration_test.go b/metricbeat/module/mysql/mysql_integration_test.go index 585cf011f9ea..83e07ce0d3fc 100644 --- a/metricbeat/module/mysql/mysql_integration_test.go +++ b/metricbeat/module/mysql/mysql_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package mysql diff --git a/metricbeat/module/mysql/mysql_test.go b/metricbeat/module/mysql/mysql_test.go index 1497dc78c355..767cfad4a537 100644 --- a/metricbeat/module/mysql/mysql_test.go +++ b/metricbeat/module/mysql/mysql_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mysql diff --git a/metricbeat/module/mysql/status/status_integration_test.go b/metricbeat/module/mysql/status/status_integration_test.go index 2b0b2a510d99..506f7955c7a8 100644 --- a/metricbeat/module/mysql/status/status_integration_test.go +++ b/metricbeat/module/mysql/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/nats/connection/connection_integration_test.go b/metricbeat/module/nats/connection/connection_integration_test.go index f6acb058ffc4..aee8b8e17264 100644 --- a/metricbeat/module/nats/connection/connection_integration_test.go +++ b/metricbeat/module/nats/connection/connection_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package connection diff --git a/metricbeat/module/nats/connections/connections_integration_test.go b/metricbeat/module/nats/connections/connections_integration_test.go index e9a51aa8deb7..497618a49fdf 100644 --- a/metricbeat/module/nats/connections/connections_integration_test.go +++ b/metricbeat/module/nats/connections/connections_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package connections diff --git a/metricbeat/module/nats/route/route_integration_test.go b/metricbeat/module/nats/route/route_integration_test.go index f54a0ff3f6ee..3eb8449cd4ba 100644 --- a/metricbeat/module/nats/route/route_integration_test.go +++ b/metricbeat/module/nats/route/route_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package route diff --git a/metricbeat/module/nats/routes/routes_integration_test.go b/metricbeat/module/nats/routes/routes_integration_test.go index 2ffb1a64f2a6..4a4660e89ab9 100644 --- a/metricbeat/module/nats/routes/routes_integration_test.go +++ b/metricbeat/module/nats/routes/routes_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package routes diff --git a/metricbeat/module/nats/stats/stats_integration_test.go b/metricbeat/module/nats/stats/stats_integration_test.go index 56b50fc01c37..9c9d67c207ec 100644 --- a/metricbeat/module/nats/stats/stats_integration_test.go +++ b/metricbeat/module/nats/stats/stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stats diff --git a/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go b/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go index 0d0b03f71a49..ca1350b2b1b7 100644 --- a/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go +++ b/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package subscriptions diff --git a/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go b/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go index c1024f918f04..307d6a9734a7 100644 --- a/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go +++ b/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stubstatus diff --git a/metricbeat/module/openmetrics/collector/_meta/data.json b/metricbeat/module/openmetrics/collector/_meta/data.json index 5c3e9aec6ba8..d20778fec4a1 100644 --- a/metricbeat/module/openmetrics/collector/_meta/data.json +++ b/metricbeat/module/openmetrics/collector/_meta/data.json @@ -11,7 +11,7 @@ }, "openmetrics": { "labels": { - "device": "br-3a285aa5e58c", + "device": "br-33d819d5f834", "job": "openmetrics" }, "metrics": { diff --git a/metricbeat/module/openmetrics/collector/collector_test.go b/metricbeat/module/openmetrics/collector/collector_test.go index 072755f3f752..06a48f15a0b7 100644 --- a/metricbeat/module/openmetrics/collector/collector_test.go +++ b/metricbeat/module/openmetrics/collector/collector_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collector diff --git a/metricbeat/module/php_fpm/pool/pool_integration_test.go b/metricbeat/module/php_fpm/pool/pool_integration_test.go index 84be99e00fb8..857583aff1ba 100644 --- a/metricbeat/module/php_fpm/pool/pool_integration_test.go +++ b/metricbeat/module/php_fpm/pool/pool_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package pool diff --git a/metricbeat/module/php_fpm/pool/pool_test.go b/metricbeat/module/php_fpm/pool/pool_test.go index ec3ea2f5a71e..59c3dafca2ad 100644 --- a/metricbeat/module/php_fpm/pool/pool_test.go +++ b/metricbeat/module/php_fpm/pool/pool_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pool diff --git a/metricbeat/module/php_fpm/process/process_integration_test.go b/metricbeat/module/php_fpm/process/process_integration_test.go index 0cb8f3fa1a5f..25e64ab18e91 100644 --- a/metricbeat/module/php_fpm/process/process_integration_test.go +++ b/metricbeat/module/php_fpm/process/process_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package process diff --git a/metricbeat/module/php_fpm/process/process_test.go b/metricbeat/module/php_fpm/process/process_test.go index 7726226a27de..e2e593a12301 100644 --- a/metricbeat/module/php_fpm/process/process_test.go +++ b/metricbeat/module/php_fpm/process/process_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package process diff --git a/metricbeat/module/postgresql/activity/activity_integration_test.go b/metricbeat/module/postgresql/activity/activity_integration_test.go index 5cf46489d7fe..c4fd5cbd28b2 100644 --- a/metricbeat/module/postgresql/activity/activity_integration_test.go +++ b/metricbeat/module/postgresql/activity/activity_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package activity diff --git a/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go b/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go index 0302e6bf292c..077ac2de9d63 100644 --- a/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go +++ b/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package bgwriter diff --git a/metricbeat/module/postgresql/database/database_integration_test.go b/metricbeat/module/postgresql/database/database_integration_test.go index 08d17b235763..648104de5d56 100644 --- a/metricbeat/module/postgresql/database/database_integration_test.go +++ b/metricbeat/module/postgresql/database/database_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package database diff --git a/metricbeat/module/postgresql/statement/statement_integration_test.go b/metricbeat/module/postgresql/statement/statement_integration_test.go index 365a5acbdb87..e8180a627baf 100644 --- a/metricbeat/module/postgresql/statement/statement_integration_test.go +++ b/metricbeat/module/postgresql/statement/statement_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package statement diff --git a/metricbeat/module/prometheus/collector/_meta/data.json b/metricbeat/module/prometheus/collector/_meta/data.json index dba9f7771c45..a46b63c74feb 100644 --- a/metricbeat/module/prometheus/collector/_meta/data.json +++ b/metricbeat/module/prometheus/collector/_meta/data.json @@ -11,12 +11,10 @@ }, "prometheus": { "labels": { - "job": "prometheus", - "listener_name": "http" + "job": "prometheus" }, "metrics": { - "net_conntrack_listener_conn_accepted_total": 3, - "net_conntrack_listener_conn_closed_total": 0 + "up": 1 } }, "service": { diff --git a/metricbeat/module/prometheus/collector/collector_test.go b/metricbeat/module/prometheus/collector/collector_test.go index 541b83b8f83d..6432a686ec39 100644 --- a/metricbeat/module/prometheus/collector/collector_test.go +++ b/metricbeat/module/prometheus/collector/collector_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collector diff --git a/metricbeat/module/prometheus/query/query_integration_test.go b/metricbeat/module/prometheus/query/query_integration_test.go index a54c9f1daf8a..d3bdb0f57068 100644 --- a/metricbeat/module/prometheus/query/query_integration_test.go +++ b/metricbeat/module/prometheus/query/query_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package query diff --git a/metricbeat/module/rabbitmq/node/node_integration_test.go b/metricbeat/module/rabbitmq/node/node_integration_test.go index 76d13ce863fa..0a3869883191 100644 --- a/metricbeat/module/rabbitmq/node/node_integration_test.go +++ b/metricbeat/module/rabbitmq/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package node diff --git a/metricbeat/module/redis/info/info_integration_test.go b/metricbeat/module/redis/info/info_integration_test.go index 044685d4885c..672bccf77c75 100644 --- a/metricbeat/module/redis/info/info_integration_test.go +++ b/metricbeat/module/redis/info/info_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package info diff --git a/metricbeat/module/redis/key/key_integration_test.go b/metricbeat/module/redis/key/key_integration_test.go index e90c88f922e0..850b19510be6 100644 --- a/metricbeat/module/redis/key/key_integration_test.go +++ b/metricbeat/module/redis/key/key_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package key diff --git a/metricbeat/module/redis/keyspace/keyspace_integration_test.go b/metricbeat/module/redis/keyspace/keyspace_integration_test.go index 65a6591e3ff5..3c146cb29401 100644 --- a/metricbeat/module/redis/keyspace/keyspace_integration_test.go +++ b/metricbeat/module/redis/keyspace/keyspace_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package keyspace diff --git a/metricbeat/module/redis/metricset_integration_test.go b/metricbeat/module/redis/metricset_integration_test.go index b6abbe6e07d5..3277e864b09c 100644 --- a/metricbeat/module/redis/metricset_integration_test.go +++ b/metricbeat/module/redis/metricset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package redis diff --git a/metricbeat/module/redis/metricset_test.go b/metricbeat/module/redis/metricset_test.go index 6e0235154068..4540ee1d26c1 100644 --- a/metricbeat/module/redis/metricset_test.go +++ b/metricbeat/module/redis/metricset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package redis diff --git a/metricbeat/module/redis/redis_integration_test.go b/metricbeat/module/redis/redis_integration_test.go index abe91d77e68e..92b38af6e5a3 100644 --- a/metricbeat/module/redis/redis_integration_test.go +++ b/metricbeat/module/redis/redis_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package redis diff --git a/metricbeat/module/system/core/core.go b/metricbeat/module/system/core/core.go index fddb0162739f..3e35800bfbc5 100644 --- a/metricbeat/module/system/core/core.go +++ b/metricbeat/module/system/core/core.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package core diff --git a/metricbeat/module/system/core/core_test.go b/metricbeat/module/system/core/core_test.go index dd403375711a..dd1b2d87d365 100644 --- a/metricbeat/module/system/core/core_test.go +++ b/metricbeat/module/system/core/core_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package core diff --git a/metricbeat/module/system/cpu/cpu.go b/metricbeat/module/system/cpu/cpu.go index ebf1f64d846d..f992194d9b34 100644 --- a/metricbeat/module/system/cpu/cpu.go +++ b/metricbeat/module/system/cpu/cpu.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package cpu diff --git a/metricbeat/module/system/cpu/cpu_test.go b/metricbeat/module/system/cpu/cpu_test.go index 861be685bb52..cbdf3e8b0a9b 100644 --- a/metricbeat/module/system/cpu/cpu_test.go +++ b/metricbeat/module/system/cpu/cpu_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package cpu diff --git a/metricbeat/module/system/diskio/diskio.go b/metricbeat/module/system/diskio/diskio.go index 30578f972ad2..b47e2e76c155 100644 --- a/metricbeat/module/system/diskio/diskio.go +++ b/metricbeat/module/system/diskio/diskio.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (darwin && cgo) || freebsd || linux || windows // +build darwin,cgo freebsd linux windows package diskio diff --git a/metricbeat/module/system/diskio/diskio_test.go b/metricbeat/module/system/diskio/diskio_test.go index f157f5fcf124..39fce062c0a7 100644 --- a/metricbeat/module/system/diskio/diskio_test.go +++ b/metricbeat/module/system/diskio/diskio_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && ((darwin && cgo) || freebsd || linux || windows) // +build integration // +build darwin,cgo freebsd linux windows diff --git a/metricbeat/module/system/entropy/entropy.go b/metricbeat/module/system/entropy/entropy.go index 3604c9d59fcc..502ff29f9334 100644 --- a/metricbeat/module/system/entropy/entropy.go +++ b/metricbeat/module/system/entropy/entropy.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package entropy diff --git a/metricbeat/module/system/entropy/entropy_test.go b/metricbeat/module/system/entropy/entropy_test.go index 8c9f6805bbe7..27142581eb01 100644 --- a/metricbeat/module/system/entropy/entropy_test.go +++ b/metricbeat/module/system/entropy/entropy_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package entropy diff --git a/metricbeat/module/system/filesystem/filesystem.go b/metricbeat/module/system/filesystem/filesystem.go index 765a874cb75a..579f1daaf6dd 100644 --- a/metricbeat/module/system/filesystem/filesystem.go +++ b/metricbeat/module/system/filesystem/filesystem.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package filesystem diff --git a/metricbeat/module/system/filesystem/filesystem_test.go b/metricbeat/module/system/filesystem/filesystem_test.go index 87ea5c072f32..bc3ba234469e 100644 --- a/metricbeat/module/system/filesystem/filesystem_test.go +++ b/metricbeat/module/system/filesystem/filesystem_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package filesystem diff --git a/metricbeat/module/system/filesystem/helper.go b/metricbeat/module/system/filesystem/helper.go index cd6e338c0e2f..b42504d88251 100644 --- a/metricbeat/module/system/filesystem/helper.go +++ b/metricbeat/module/system/filesystem/helper.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package filesystem diff --git a/metricbeat/module/system/filesystem/helper_test.go b/metricbeat/module/system/filesystem/helper_test.go index 7ee8d997ccb5..1f7d0027f5a2 100644 --- a/metricbeat/module/system/filesystem/helper_test.go +++ b/metricbeat/module/system/filesystem/helper_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration && (darwin || freebsd || linux || openbsd || windows) // +build !integration // +build darwin freebsd linux openbsd windows diff --git a/metricbeat/module/system/fsstat/fsstat.go b/metricbeat/module/system/fsstat/fsstat.go index 0f43cf4af55c..ab80640a0c4a 100644 --- a/metricbeat/module/system/fsstat/fsstat.go +++ b/metricbeat/module/system/fsstat/fsstat.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package fsstat diff --git a/metricbeat/module/system/fsstat/fsstat_test.go b/metricbeat/module/system/fsstat/fsstat_test.go index df591a108989..acfc08b12ec4 100644 --- a/metricbeat/module/system/fsstat/fsstat_test.go +++ b/metricbeat/module/system/fsstat/fsstat_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package fsstat diff --git a/metricbeat/module/system/load/load.go b/metricbeat/module/system/load/load.go index 0a991542a7d0..8e49c60a8847 100644 --- a/metricbeat/module/system/load/load.go +++ b/metricbeat/module/system/load/load.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd // +build darwin freebsd linux openbsd package load diff --git a/metricbeat/module/system/load/load_test.go b/metricbeat/module/system/load/load_test.go index 6a8fadcc797e..0c5f73caf8ae 100644 --- a/metricbeat/module/system/load/load_test.go +++ b/metricbeat/module/system/load/load_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd // +build darwin freebsd linux openbsd package load diff --git a/metricbeat/module/system/memory/helper_other.go b/metricbeat/module/system/memory/helper_other.go index adbeba59aa6c..7abb4f770a8e 100644 --- a/metricbeat/module/system/memory/helper_other.go +++ b/metricbeat/module/system/memory/helper_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || aix || openbsd || windows // +build darwin freebsd aix openbsd windows package memory diff --git a/metricbeat/module/system/memory/memory.go b/metricbeat/module/system/memory/memory.go index 54565231c533..4b0a6f816b57 100644 --- a/metricbeat/module/system/memory/memory.go +++ b/metricbeat/module/system/memory/memory.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package memory diff --git a/metricbeat/module/system/memory/memory_test.go b/metricbeat/module/system/memory/memory_test.go index 515bfcb26b82..4a5da887ea4a 100644 --- a/metricbeat/module/system/memory/memory_test.go +++ b/metricbeat/module/system/memory/memory_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package memory diff --git a/metricbeat/module/system/network/network.go b/metricbeat/module/system/network/network.go index b50a91d3eb03..63b33da49440 100644 --- a/metricbeat/module/system/network/network.go +++ b/metricbeat/module/system/network/network.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package network diff --git a/metricbeat/module/system/network/network_test.go b/metricbeat/module/system/network/network_test.go index 999a1b91cde8..11b8b433de98 100644 --- a/metricbeat/module/system/network/network_test.go +++ b/metricbeat/module/system/network/network_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package network diff --git a/metricbeat/module/system/process/process.go b/metricbeat/module/system/process/process.go index 9928f34bdf5b..a36e3bb34595 100644 --- a/metricbeat/module/system/process/process.go +++ b/metricbeat/module/system/process/process.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process diff --git a/metricbeat/module/system/process/process_test.go b/metricbeat/module/system/process/process_test.go index 36cdb291ef80..a66f3a6386c8 100644 --- a/metricbeat/module/system/process/process_test.go +++ b/metricbeat/module/system/process/process_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process diff --git a/metricbeat/module/system/process_summary/process_summary.go b/metricbeat/module/system/process_summary/process_summary.go index 5edb31f91827..a4f0e7b204ac 100644 --- a/metricbeat/module/system/process_summary/process_summary.go +++ b/metricbeat/module/system/process_summary/process_summary.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process_summary diff --git a/metricbeat/module/system/process_summary/process_summary_test.go b/metricbeat/module/system/process_summary/process_summary_test.go index c95e361224c0..22bdf2ae69f8 100644 --- a/metricbeat/module/system/process_summary/process_summary_test.go +++ b/metricbeat/module/system/process_summary/process_summary_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process_summary diff --git a/metricbeat/module/system/service/data.go b/metricbeat/module/system/service/data.go index 077c3770f4e9..28ce962f329e 100644 --- a/metricbeat/module/system/service/data.go +++ b/metricbeat/module/system/service/data.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/service/dbus.go b/metricbeat/module/system/service/dbus.go index c3c5bf1dc418..c795864bd556 100644 --- a/metricbeat/module/system/service/dbus.go +++ b/metricbeat/module/system/service/dbus.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/service/service.go b/metricbeat/module/system/service/service.go index 850a86b0a98e..772fad74acdb 100644 --- a/metricbeat/module/system/service/service.go +++ b/metricbeat/module/system/service/service.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/service/service_test.go b/metricbeat/module/system/service/service_test.go index 87581ff45f81..bfa2ad6a3195 100644 --- a/metricbeat/module/system/service/service_test.go +++ b/metricbeat/module/system/service/service_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/socket/socket.go b/metricbeat/module/system/socket/socket.go index 6b768b565510..2e290bddaf2d 100644 --- a/metricbeat/module/system/socket/socket.go +++ b/metricbeat/module/system/socket/socket.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/module/system/socket/socket_test.go b/metricbeat/module/system/socket/socket_test.go index 6c92125646d4..38d63c55026a 100644 --- a/metricbeat/module/system/socket/socket_test.go +++ b/metricbeat/module/system/socket/socket_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/module/system/socket_summary/sockstat_linux.go b/metricbeat/module/system/socket_summary/sockstat_linux.go index 70d4919f43ae..9aff1d6b002a 100644 --- a/metricbeat/module/system/socket_summary/sockstat_linux.go +++ b/metricbeat/module/system/socket_summary/sockstat_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket_summary diff --git a/metricbeat/module/system/socket_summary/sockstat_linux_test.go b/metricbeat/module/system/socket_summary/sockstat_linux_test.go index 03d1f30afea7..e266000d09ee 100644 --- a/metricbeat/module/system/socket_summary/sockstat_linux_test.go +++ b/metricbeat/module/system/socket_summary/sockstat_linux_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket_summary diff --git a/metricbeat/module/system/socket_summary/sockstat_other.go b/metricbeat/module/system/socket_summary/sockstat_other.go index 5d87f40cdd97..1df924647b8d 100644 --- a/metricbeat/module/system/socket_summary/sockstat_other.go +++ b/metricbeat/module/system/socket_summary/sockstat_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package socket_summary diff --git a/metricbeat/module/system/system_other.go b/metricbeat/module/system/system_other.go index 01c0053e922c..6b99c5c3fed5 100644 --- a/metricbeat/module/system/system_other.go +++ b/metricbeat/module/system/system_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package system diff --git a/metricbeat/module/system/uptime/uptime.go b/metricbeat/module/system/uptime/uptime.go index cbefa8bd4b46..12e4ec7ac4cc 100644 --- a/metricbeat/module/system/uptime/uptime.go +++ b/metricbeat/module/system/uptime/uptime.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || linux || openbsd || windows || (freebsd && cgo) // +build darwin linux openbsd windows freebsd,cgo package uptime diff --git a/metricbeat/module/system/uptime/uptime_test.go b/metricbeat/module/system/uptime/uptime_test.go index d0542c50db09..d1ae484cac66 100644 --- a/metricbeat/module/system/uptime/uptime_test.go +++ b/metricbeat/module/system/uptime/uptime_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || linux || openbsd || windows || (freebsd && cgo) // +build darwin linux openbsd windows freebsd,cgo package uptime diff --git a/metricbeat/module/system/users/dbus.go b/metricbeat/module/system/users/dbus.go index 3d8177f3d762..fc43642784ce 100644 --- a/metricbeat/module/system/users/dbus.go +++ b/metricbeat/module/system/users/dbus.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux +//go:build linux +// +build linux package users diff --git a/metricbeat/module/system/users/users.go b/metricbeat/module/system/users/users.go index 11064c67eb0b..84311b837250 100644 --- a/metricbeat/module/system/users/users.go +++ b/metricbeat/module/system/users/users.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux +//go:build linux +// +build linux package users diff --git a/metricbeat/module/system/users/users_test.go b/metricbeat/module/system/users/users_test.go index 11a6a09bdeed..fffc67e4b9bc 100644 --- a/metricbeat/module/system/users/users_test.go +++ b/metricbeat/module/system/users/users_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux +//go:build linux +// +build linux package users diff --git a/metricbeat/module/traefik/health/data_test.go b/metricbeat/module/traefik/health/data_test.go index ad710e43d2ed..26b5a840f02f 100644 --- a/metricbeat/module/traefik/health/data_test.go +++ b/metricbeat/module/traefik/health/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package health diff --git a/metricbeat/module/traefik/health/health_integration_test.go b/metricbeat/module/traefik/health/health_integration_test.go index 6f9aa36f48b4..8b621a329b9e 100644 --- a/metricbeat/module/traefik/health/health_integration_test.go +++ b/metricbeat/module/traefik/health/health_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package health diff --git a/metricbeat/module/traefik/health/health_test.go b/metricbeat/module/traefik/health/health_test.go index 7d96d7d88fa0..a95adc7fcbf7 100644 --- a/metricbeat/module/traefik/health/health_test.go +++ b/metricbeat/module/traefik/health/health_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package health diff --git a/metricbeat/module/uwsgi/status/status_integration_test.go b/metricbeat/module/uwsgi/status/status_integration_test.go index a9f32e6690d9..0cf0cbc86208 100644 --- a/metricbeat/module/uwsgi/status/status_integration_test.go +++ b/metricbeat/module/uwsgi/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/windows/perfmon/config.go b/metricbeat/module/windows/perfmon/config.go index 39d86b2cc80e..18354b94258c 100644 --- a/metricbeat/module/windows/perfmon/config.go +++ b/metricbeat/module/windows/perfmon/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/config_test.go b/metricbeat/module/windows/perfmon/config_test.go index 8f96a9ca1ed4..51330b4e60eb 100644 --- a/metricbeat/module/windows/perfmon/config_test.go +++ b/metricbeat/module/windows/perfmon/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/data.go b/metricbeat/module/windows/perfmon/data.go index 3a2adb413eaa..691e0b7041ca 100644 --- a/metricbeat/module/windows/perfmon/data.go +++ b/metricbeat/module/windows/perfmon/data.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/data_test.go b/metricbeat/module/windows/perfmon/data_test.go index ea5f72fe143f..67ec8b58470c 100644 --- a/metricbeat/module/windows/perfmon/data_test.go +++ b/metricbeat/module/windows/perfmon/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/perfmon.go b/metricbeat/module/windows/perfmon/perfmon.go index 6dd03e92def3..5edc7fb0e560 100644 --- a/metricbeat/module/windows/perfmon/perfmon.go +++ b/metricbeat/module/windows/perfmon/perfmon.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/perfmon_test.go b/metricbeat/module/windows/perfmon/perfmon_test.go index cb7961c4b00e..3dde264a4011 100644 --- a/metricbeat/module/windows/perfmon/perfmon_test.go +++ b/metricbeat/module/windows/perfmon/perfmon_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package perfmon diff --git a/metricbeat/module/windows/perfmon/reader.go b/metricbeat/module/windows/perfmon/reader.go index 3e62e1978490..49565ebfd264 100644 --- a/metricbeat/module/windows/perfmon/reader.go +++ b/metricbeat/module/windows/perfmon/reader.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/reader_integration_test.go b/metricbeat/module/windows/perfmon/reader_integration_test.go index 56247e00d6dc..44a5f0438848 100644 --- a/metricbeat/module/windows/perfmon/reader_integration_test.go +++ b/metricbeat/module/windows/perfmon/reader_integration_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package perfmon diff --git a/metricbeat/module/windows/perfmon/reader_test.go b/metricbeat/module/windows/perfmon/reader_test.go index 818f07441e34..6131aacc3c93 100644 --- a/metricbeat/module/windows/perfmon/reader_test.go +++ b/metricbeat/module/windows/perfmon/reader_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/service/defs_service_windows.go b/metricbeat/module/windows/service/defs_service_windows.go index 69f77f7c2abe..9fce6df71639 100644 --- a/metricbeat/module/windows/service/defs_service_windows.go +++ b/metricbeat/module/windows/service/defs_service_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package service diff --git a/metricbeat/module/windows/service/reader.go b/metricbeat/module/windows/service/reader.go index 918d59cb428b..e172ea674187 100644 --- a/metricbeat/module/windows/service/reader.go +++ b/metricbeat/module/windows/service/reader.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/reader_test.go b/metricbeat/module/windows/service/reader_test.go index 2135bbb944a0..12415c23f454 100644 --- a/metricbeat/module/windows/service/reader_test.go +++ b/metricbeat/module/windows/service/reader_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/service.go b/metricbeat/module/windows/service/service.go index 4a0bf2b9e751..2bb8f754327c 100644 --- a/metricbeat/module/windows/service/service.go +++ b/metricbeat/module/windows/service/service.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/service_integration_test.go b/metricbeat/module/windows/service/service_integration_test.go index bd7fc91c4118..65f4cb9544bf 100644 --- a/metricbeat/module/windows/service/service_integration_test.go +++ b/metricbeat/module/windows/service/service_integration_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package service diff --git a/metricbeat/module/windows/service/service_status.go b/metricbeat/module/windows/service/service_status.go index 1882b1a94f1b..cb1b6a35b1d0 100644 --- a/metricbeat/module/windows/service/service_status.go +++ b/metricbeat/module/windows/service/service_status.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/service_status_test.go b/metricbeat/module/windows/service/service_status_test.go index e6c721d9d309..52f0a4ca1230 100644 --- a/metricbeat/module/windows/service/service_status_test.go +++ b/metricbeat/module/windows/service/service_status_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/windows.go b/metricbeat/module/windows/windows.go index 584817e6a369..e6b2d706b267 100644 --- a/metricbeat/module/windows/windows.go +++ b/metricbeat/module/windows/windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package windows diff --git a/metricbeat/module/zookeeper/connection/connection_integration_test.go b/metricbeat/module/zookeeper/connection/connection_integration_test.go index f774f36c202f..f71bc1c3d0a2 100644 --- a/metricbeat/module/zookeeper/connection/connection_integration_test.go +++ b/metricbeat/module/zookeeper/connection/connection_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package connection diff --git a/metricbeat/module/zookeeper/mntr/mntr_integration_test.go b/metricbeat/module/zookeeper/mntr/mntr_integration_test.go index 34e36321a5df..45f14b6daae5 100644 --- a/metricbeat/module/zookeeper/mntr/mntr_integration_test.go +++ b/metricbeat/module/zookeeper/mntr/mntr_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package mntr diff --git a/metricbeat/module/zookeeper/server/server_integration_test.go b/metricbeat/module/zookeeper/server/server_integration_test.go index 6f23559033bc..34bfdc29e883 100644 --- a/metricbeat/module/zookeeper/server/server_integration_test.go +++ b/metricbeat/module/zookeeper/server/server_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package server diff --git a/metricbeat/module/zookeeper/zookeeper_integration_test.go b/metricbeat/module/zookeeper/zookeeper_integration_test.go index d40bf01f0772..262c0341246d 100644 --- a/metricbeat/module/zookeeper/zookeeper_integration_test.go +++ b/metricbeat/module/zookeeper/zookeeper_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package zookeeper diff --git a/packetbeat/Dockerfile b/packetbeat/Dockerfile index 101b27b28695..4d5ad764b67c 100644 --- a/packetbeat/Dockerfile +++ b/packetbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/packetbeat/decoder/decoder_test.go b/packetbeat/decoder/decoder_test.go index 954be381da03..8e6fad990a8f 100644 --- a/packetbeat/decoder/decoder_test.go +++ b/packetbeat/decoder/decoder_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package decoder diff --git a/packetbeat/docs/fields.asciidoc b/packetbeat/docs/fields.asciidoc index b2566e9cdb60..27b54a13cdc8 100644 --- a/packetbeat/docs/fields.asciidoc +++ b/packetbeat/docs/fields.asciidoc @@ -16710,16 +16710,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/packetbeat/flows/flowid_test.go b/packetbeat/flows/flowid_test.go index 85633bb6cab5..78c8919b3d8f 100644 --- a/packetbeat/flows/flowid_test.go +++ b/packetbeat/flows/flowid_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package flows diff --git a/packetbeat/flows/flows_test.go b/packetbeat/flows/flows_test.go index e56b37773749..601613e61d12 100644 --- a/packetbeat/flows/flows_test.go +++ b/packetbeat/flows/flows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package flows diff --git a/packetbeat/include/fields.go b/packetbeat/include/fields.go index d5fc9f86ff34..017f52379ab1 100644 --- a/packetbeat/include/fields.go +++ b/packetbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/packetbeat/magefile.go b/packetbeat/magefile.go index ca498270d944..8ebed12122a5 100644 --- a/packetbeat/magefile.go +++ b/packetbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/packetbeat/procs/procs_linux.go b/packetbeat/procs/procs_linux.go index cd4e81bfb8b8..2ae633cb9720 100644 --- a/packetbeat/procs/procs_linux.go +++ b/packetbeat/procs/procs_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package procs diff --git a/packetbeat/procs/procs_linux_test.go b/packetbeat/procs/procs_linux_test.go index 25a856ed2f8b..39c8a9377411 100644 --- a/packetbeat/procs/procs_linux_test.go +++ b/packetbeat/procs/procs_linux_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package procs diff --git a/packetbeat/procs/procs_other.go b/packetbeat/procs/procs_other.go index 0e401806aba7..90e2af39c805 100644 --- a/packetbeat/procs/procs_other.go +++ b/packetbeat/procs/procs_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package procs diff --git a/packetbeat/procs/procs_test.go b/packetbeat/procs/procs_test.go index 359640d0bcb6..628aeb299f93 100644 --- a/packetbeat/procs/procs_test.go +++ b/packetbeat/procs/procs_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package procs diff --git a/packetbeat/procs/procs_windows.go b/packetbeat/procs/procs_windows.go index b18bd792841c..50807691efa6 100644 --- a/packetbeat/procs/procs_windows.go +++ b/packetbeat/procs/procs_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package procs diff --git a/packetbeat/procs/procs_windows_test.go b/packetbeat/procs/procs_windows_test.go index 2a4ad96e18d5..51cc8391d68f 100644 --- a/packetbeat/procs/procs_windows_test.go +++ b/packetbeat/procs/procs_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package procs diff --git a/packetbeat/procs/syscall_windows.go b/packetbeat/procs/syscall_windows.go index f3f1aa00bafe..5960ce325929 100644 --- a/packetbeat/procs/syscall_windows.go +++ b/packetbeat/procs/syscall_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package procs diff --git a/packetbeat/protos/dns/dns.go b/packetbeat/protos/dns/dns.go index 15aa154276fc..125d6112bae6 100644 --- a/packetbeat/protos/dns/dns.go +++ b/packetbeat/protos/dns/dns.go @@ -615,6 +615,9 @@ func rrsToMapStrs(records []mkdns.RR, ipList bool) ([]common.MapStr, []string) { mapStr["ttl"] = strconv.FormatInt(int64(rrHeader.Ttl), 10) mapStrSlice = append(mapStrSlice, mapStr) } + if len(mapStrSlice) == 0 { + mapStrSlice = nil + } return mapStrSlice, allIPs } @@ -687,10 +690,19 @@ func rrToMapStr(rr mkdns.RR, ipList bool) (common.MapStr, []string) { } else { debugf("Rdata for the unhandled RR type %s could not be fetched", dnsTypeToString(rrType)) } + + // Don't attempt to render IPs for answers that are incomplete. case *mkdns.A: + if x.A == nil { + break + } mapStr["data"] = appendIP(x.A.String()) case *mkdns.AAAA: + if x.AAAA == nil { + break + } mapStr["data"] = appendIP(x.AAAA.String()) + case *mkdns.CNAME: mapStr["data"] = trimRightDot(x.Target) case *mkdns.DNSKEY: diff --git a/packetbeat/protos/dns/dns_tcp_test.go b/packetbeat/protos/dns/dns_tcp_test.go index 826ba451c32f..cdc9695d180e 100644 --- a/packetbeat/protos/dns/dns_tcp_test.go +++ b/packetbeat/protos/dns/dns_tcp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Unit tests and benchmarks for the dns package. diff --git a/packetbeat/protos/dns/dns_test.go b/packetbeat/protos/dns/dns_test.go index 3b87ecb2e720..9427ebeaecf5 100644 --- a/packetbeat/protos/dns/dns_test.go +++ b/packetbeat/protos/dns/dns_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Common variables, functions and tests for the dns package tests @@ -211,8 +212,14 @@ func assertMapStrData(t testing.TB, m common.MapStr, q dnsTestMessage) { assertFlags(t, m, q.flags) assert.Equal(t, q.rcode, mapValue(t, m, "dns.response_code")) - assert.Equal(t, len(q.answers), mapValue(t, m, "dns.answers_count"), - "Expected dns.answers_count to be %d", len(q.answers)) + truncated, ok := mapValue(t, m, "dns.flags.truncated_response").(bool) + if !ok { + t.Fatal("dns.flags.truncated_response value is not a bool.") + } + if !truncated { + assert.Equal(t, len(q.answers), mapValue(t, m, "dns.answers_count"), + "Expected dns.answers_count to be %d", len(q.answers)) + } if len(q.answers) > 0 { assert.Len(t, mapValue(t, m, "dns.answers"), len(q.answers), "Expected dns.answers to be length %d", len(q.answers)) diff --git a/packetbeat/protos/dns/dns_udp_test.go b/packetbeat/protos/dns/dns_udp_test.go index fb482b556767..3711fb50e007 100644 --- a/packetbeat/protos/dns/dns_udp_test.go +++ b/packetbeat/protos/dns/dns_udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Unit tests and benchmarks for the dns package. @@ -53,6 +54,7 @@ var ( // An array of all test messages. messages = []dnsTestMessage{ elasticA, + elasticNoIP, zoneIxfr, githubPtr, sophosTxt, @@ -82,6 +84,28 @@ var ( }, } + elasticNoIP = dnsTestMessage{ + id: 8529, + opcode: "QUERY", + flags: []string{"rd", "ra", "tc"}, + rcode: "NOERROR", + qClass: "IN", + qType: "A", + qName: "elastic.co", + qEtld: "elastic.co", + qTLD: "co", + answers: nil, + request: []byte{ + 0x21, 0x51, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x65, 0x6c, 0x61, + 0x73, 0x74, 0x69, 0x63, 0x02, 0x63, 0x6f, 0x00, 0x00, 0x01, 0x00, 0x01, + }, + response: []byte{ + 0x21, 0x51, 0x83, 0x80, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x65, 0x6c, 0x61, + 0x73, 0x74, 0x69, 0x63, 0x02, 0x63, 0x6f, 0x00, 0x00, 0x01, 0x00, 0x01, 0xc0, 0x0c, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, + }, + } + zoneIxfr = dnsTestMessage{ id: 16384, opcode: "QUERY", diff --git a/packetbeat/protos/dns/names_test.go b/packetbeat/protos/dns/names_test.go index 5d5d9323eb52..e241d1294ce7 100644 --- a/packetbeat/protos/dns/names_test.go +++ b/packetbeat/protos/dns/names_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Unit tests and benchmarks for the dns package. diff --git a/packetbeat/protos/http/http_test.go b/packetbeat/protos/http/http_test.go index 5af4869368d7..0fa9077a5ed5 100644 --- a/packetbeat/protos/http/http_test.go +++ b/packetbeat/protos/http/http_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package http diff --git a/packetbeat/protos/icmp/icmp_test.go b/packetbeat/protos/icmp/icmp_test.go index fc9508fbcdc9..a74e097fe047 100644 --- a/packetbeat/protos/icmp/icmp_test.go +++ b/packetbeat/protos/icmp/icmp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/icmp/message_test.go b/packetbeat/protos/icmp/message_test.go index c9fdb8021c8d..6ebc00fe3514 100644 --- a/packetbeat/protos/icmp/message_test.go +++ b/packetbeat/protos/icmp/message_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/icmp/transaction_test.go b/packetbeat/protos/icmp/transaction_test.go index 38802231af3c..3c1f7fe64c54 100644 --- a/packetbeat/protos/icmp/transaction_test.go +++ b/packetbeat/protos/icmp/transaction_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/icmp/tuple_test.go b/packetbeat/protos/icmp/tuple_test.go index b909dfd6291e..7c9112decb10 100644 --- a/packetbeat/protos/icmp/tuple_test.go +++ b/packetbeat/protos/icmp/tuple_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/memcache/binary_test.go b/packetbeat/protos/memcache/binary_test.go index 740f9bb356f8..0297d7930249 100644 --- a/packetbeat/protos/memcache/binary_test.go +++ b/packetbeat/protos/memcache/binary_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/memcache_test.go b/packetbeat/protos/memcache/memcache_test.go index 641dec070e16..b09abbb4b5ae 100644 --- a/packetbeat/protos/memcache/memcache_test.go +++ b/packetbeat/protos/memcache/memcache_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/parse_test.go b/packetbeat/protos/memcache/parse_test.go index f50b156a789c..95fdac5bad32 100644 --- a/packetbeat/protos/memcache/parse_test.go +++ b/packetbeat/protos/memcache/parse_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/plugin_udp_test.go b/packetbeat/protos/memcache/plugin_udp_test.go index 50199523f079..1e388ea6e55c 100644 --- a/packetbeat/protos/memcache/plugin_udp_test.go +++ b/packetbeat/protos/memcache/plugin_udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/text_test.go b/packetbeat/protos/memcache/text_test.go index f37e3d13c7d3..7cf93f22b9b3 100644 --- a/packetbeat/protos/memcache/text_test.go +++ b/packetbeat/protos/memcache/text_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/mongodb/mongodb_parser_test.go b/packetbeat/protos/mongodb/mongodb_parser_test.go index 9ab718718fb8..c5ded7484c02 100644 --- a/packetbeat/protos/mongodb/mongodb_parser_test.go +++ b/packetbeat/protos/mongodb/mongodb_parser_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mongodb diff --git a/packetbeat/protos/mongodb/mongodb_test.go b/packetbeat/protos/mongodb/mongodb_test.go index 2debae92dff0..ece0e1cf4aa3 100644 --- a/packetbeat/protos/mongodb/mongodb_test.go +++ b/packetbeat/protos/mongodb/mongodb_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mongodb diff --git a/packetbeat/protos/mysql/mysql_test.go b/packetbeat/protos/mysql/mysql_test.go index a188fd1a3aa4..309fd45cb0f6 100644 --- a/packetbeat/protos/mysql/mysql_test.go +++ b/packetbeat/protos/mysql/mysql_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mysql diff --git a/packetbeat/protos/pgsql/pgsql_test.go b/packetbeat/protos/pgsql/pgsql_test.go index 99acf54e15c1..328b31e28c26 100644 --- a/packetbeat/protos/pgsql/pgsql_test.go +++ b/packetbeat/protos/pgsql/pgsql_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pgsql diff --git a/packetbeat/protos/protos_test.go b/packetbeat/protos/protos_test.go index 4d61d20038e0..22269a192d2d 100644 --- a/packetbeat/protos/protos_test.go +++ b/packetbeat/protos/protos_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package protos diff --git a/packetbeat/protos/redis/redis_test.go b/packetbeat/protos/redis/redis_test.go index 9916c100852e..3eefefa0976a 100644 --- a/packetbeat/protos/redis/redis_test.go +++ b/packetbeat/protos/redis/redis_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package redis diff --git a/packetbeat/protos/sip/plugin_test.go b/packetbeat/protos/sip/plugin_test.go index 5b09f522aff6..178e72c6751c 100644 --- a/packetbeat/protos/sip/plugin_test.go +++ b/packetbeat/protos/sip/plugin_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package sip diff --git a/packetbeat/protos/tcp/tcp_test.go b/packetbeat/protos/tcp/tcp_test.go index c014e870c6b9..9dd910799b63 100644 --- a/packetbeat/protos/tcp/tcp_test.go +++ b/packetbeat/protos/tcp/tcp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tcp diff --git a/packetbeat/protos/thrift/thrift_test.go b/packetbeat/protos/thrift/thrift_test.go index e1eca793e42a..b5377eb46654 100644 --- a/packetbeat/protos/thrift/thrift_test.go +++ b/packetbeat/protos/thrift/thrift_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package thrift diff --git a/packetbeat/protos/tls/alerts_test.go b/packetbeat/protos/tls/alerts_test.go index 33cd5a08e069..f0abfad97d32 100644 --- a/packetbeat/protos/tls/alerts_test.go +++ b/packetbeat/protos/tls/alerts_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/buffer_test.go b/packetbeat/protos/tls/buffer_test.go index 5dce758f281a..178ee6db18ad 100644 --- a/packetbeat/protos/tls/buffer_test.go +++ b/packetbeat/protos/tls/buffer_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/extensions_test.go b/packetbeat/protos/tls/extensions_test.go index 9b56a0540cd0..23caec090192 100644 --- a/packetbeat/protos/tls/extensions_test.go +++ b/packetbeat/protos/tls/extensions_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/ja3_test.go b/packetbeat/protos/tls/ja3_test.go index b71ef35f4654..6bdbc3e1bec5 100644 --- a/packetbeat/protos/tls/ja3_test.go +++ b/packetbeat/protos/tls/ja3_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/parse_test.go b/packetbeat/protos/tls/parse_test.go index b6084ca5943e..ae93decc75f0 100644 --- a/packetbeat/protos/tls/parse_test.go +++ b/packetbeat/protos/tls/parse_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/tls_test.go b/packetbeat/protos/tls/tls_test.go index d384be4aad97..ad46b6335882 100644 --- a/packetbeat/protos/tls/tls_test.go +++ b/packetbeat/protos/tls/tls_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/udp/udp_test.go b/packetbeat/protos/udp/udp_test.go index 4d09882c9818..998bf071638a 100644 --- a/packetbeat/protos/udp/udp_test.go +++ b/packetbeat/protos/udp/udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package udp diff --git a/packetbeat/publish/publish_test.go b/packetbeat/publish/publish_test.go index 9b802bdb2d7a..57ed6fb9aa4e 100644 --- a/packetbeat/publish/publish_test.go +++ b/packetbeat/publish/publish_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package publish diff --git a/packetbeat/sniffer/afpacket_linux.go b/packetbeat/sniffer/afpacket_linux.go index c95e7a377975..7976ace838a5 100644 --- a/packetbeat/sniffer/afpacket_linux.go +++ b/packetbeat/sniffer/afpacket_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package sniffer diff --git a/packetbeat/sniffer/afpacket_nonlinux.go b/packetbeat/sniffer/afpacket_nonlinux.go index 7d1e423c40de..861e55fe1e53 100644 --- a/packetbeat/sniffer/afpacket_nonlinux.go +++ b/packetbeat/sniffer/afpacket_nonlinux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package sniffer diff --git a/packetbeat/sniffer/sniffer_test.go b/packetbeat/sniffer/sniffer_test.go index c75f038d0dea..eea7821d8896 100644 --- a/packetbeat/sniffer/sniffer_test.go +++ b/packetbeat/sniffer/sniffer_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package sniffer diff --git a/testing/environments/7.11.yml b/testing/environments/prev-minor.yml similarity index 78% rename from testing/environments/7.11.yml rename to testing/environments/prev-minor.yml index 7f93445987c7..a4506188f6bf 100644 --- a/testing/environments/7.11.yml +++ b/testing/environments/prev-minor.yml @@ -1,9 +1,9 @@ -# This is the latest 7.11 +# This is the previous minor for compatibility tests. version: '2.3' services: elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:7.11.2 + image: docker.elastic.co/elasticsearch/elasticsearch:7.15.0 healthcheck: test: ["CMD-SHELL", "curl -s http://localhost:9200/_cat/health?h=status | grep -q green"] retries: 300 @@ -21,7 +21,7 @@ services: - "action.destructive_requires_name=false" logstash: - image: docker.elastic.co/logstash/logstash:7.11.2 + image: docker.elastic.co/logstash/logstash:7.15.0 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:9600/_node/stats"] retries: 600 @@ -31,8 +31,8 @@ services: - ./docker/logstash/pki:/etc/pki:ro kibana: - image: docker.elastic.co/kibana/kibana:7.11.2 + image: docker.elastic.co/kibana/kibana:7.15.0 healthcheck: - test: ["CMD-SHELL", "curl -s http://localhost:5601/api/status | grep -q 'Looking good'"] + test: ["CMD-SHELL", "curl -s http://localhost:5601/api/status?v8format=true | grep -q '\"overall\":{\"level\":\"available\"'"] retries: 600 interval: 1s diff --git a/testing/environments/snapshot-oss.yml b/testing/environments/snapshot-oss.yml index 759dd22753e3..d3a731eb1d86 100644 --- a/testing/environments/snapshot-oss.yml +++ b/testing/environments/snapshot-oss.yml @@ -33,7 +33,7 @@ services: kibana: image: docker.elastic.co/kibana/kibana:8.0.0-7e122dd9-SNAPSHOT healthcheck: - test: ["CMD-SHELL", "curl -s http://localhost:5601/api/status | grep -q 'Looking good'"] + test: ["CMD-SHELL", "curl -s http://localhost:5601/api/status?v8format=true | grep -q '\"overall\":{\"level\":\"available\"'"] retries: 600 interval: 1s diff --git a/tools/tools.go b/tools/tools.go index 64ab97e4fdc2..9bf5b46212c4 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build tools // +build tools // This package contains the tool dependencies of the project. diff --git a/winlogbeat/checkpoint/checkpoint_test.go b/winlogbeat/checkpoint/checkpoint_test.go index f77d7fbd43c6..0f515cf6881a 100644 --- a/winlogbeat/checkpoint/checkpoint_test.go +++ b/winlogbeat/checkpoint/checkpoint_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package checkpoint diff --git a/winlogbeat/checkpoint/file_unix.go b/winlogbeat/checkpoint/file_unix.go index ee3201d61005..248b5301955d 100644 --- a/winlogbeat/checkpoint/file_unix.go +++ b/winlogbeat/checkpoint/file_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package checkpoint diff --git a/winlogbeat/config/config_test.go b/winlogbeat/config/config_test.go index aa468b44ed44..768408214e5f 100644 --- a/winlogbeat/config/config_test.go +++ b/winlogbeat/config/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package config diff --git a/winlogbeat/docs/fields.asciidoc b/winlogbeat/docs/fields.asciidoc index bdfc76c59e00..828ea1a1c921 100644 --- a/winlogbeat/docs/fields.asciidoc +++ b/winlogbeat/docs/fields.asciidoc @@ -14733,16 +14733,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/winlogbeat/eventlog/bench_test.go b/winlogbeat/eventlog/bench_test.go index 059aad6374d9..1d2c075c767a 100644 --- a/winlogbeat/eventlog/bench_test.go +++ b/winlogbeat/eventlog/bench_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/eventlog/errors_unix.go b/winlogbeat/eventlog/errors_unix.go index e28786b2d3b0..7236589124b2 100644 --- a/winlogbeat/eventlog/errors_unix.go +++ b/winlogbeat/eventlog/errors_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package eventlog diff --git a/winlogbeat/eventlog/wineventlog.go b/winlogbeat/eventlog/wineventlog.go index 8cf3eae0ef2e..9e52cf2bdaac 100644 --- a/winlogbeat/eventlog/wineventlog.go +++ b/winlogbeat/eventlog/wineventlog.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/eventlog/wineventlog_experimental.go b/winlogbeat/eventlog/wineventlog_experimental.go index 301b2cf4f0b6..3a3ae1826867 100644 --- a/winlogbeat/eventlog/wineventlog_experimental.go +++ b/winlogbeat/eventlog/wineventlog_experimental.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/eventlog/wineventlog_test.go b/winlogbeat/eventlog/wineventlog_test.go index 1861ed0327cc..d6ddddcdd8ba 100644 --- a/winlogbeat/eventlog/wineventlog_test.go +++ b/winlogbeat/eventlog/wineventlog_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/include/fields.go b/winlogbeat/include/fields.go index 3028ffa5f955..34e37fa2add7 100644 --- a/winlogbeat/include/fields.go +++ b/winlogbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetBuildFieldsFieldsCommonYml returns asset data. // This is the base64 encoded zlib format compressed contents of build/fields/fields.common.yml. func AssetBuildFieldsFieldsCommonYml() string { - return "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" + return "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" } diff --git a/winlogbeat/magefile.go b/winlogbeat/magefile.go index 002176ba1f42..e8edd6cc9e8c 100644 --- a/winlogbeat/magefile.go +++ b/winlogbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/winlogbeat/sys/winevent/sid_test.go b/winlogbeat/sys/winevent/sid_test.go index aced1a3921a9..e1e45fd16b5c 100644 --- a/winlogbeat/sys/winevent/sid_test.go +++ b/winlogbeat/sys/winevent/sid_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package winevent diff --git a/winlogbeat/sys/wineventlog/bookmark.go b/winlogbeat/sys/wineventlog/bookmark.go index db9d3d14452e..85834e0fadaa 100644 --- a/winlogbeat/sys/wineventlog/bookmark.go +++ b/winlogbeat/sys/wineventlog/bookmark.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/bookmark_test.go b/winlogbeat/sys/wineventlog/bookmark_test.go index 34a443a41847..618236b97932 100644 --- a/winlogbeat/sys/wineventlog/bookmark_test.go +++ b/winlogbeat/sys/wineventlog/bookmark_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/format_message.go b/winlogbeat/sys/wineventlog/format_message.go index 285d130fc40a..d953c210b562 100644 --- a/winlogbeat/sys/wineventlog/format_message.go +++ b/winlogbeat/sys/wineventlog/format_message.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/format_message_test.go b/winlogbeat/sys/wineventlog/format_message_test.go index dc2e4dd66210..910fb6b935fc 100644 --- a/winlogbeat/sys/wineventlog/format_message_test.go +++ b/winlogbeat/sys/wineventlog/format_message_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/iterator.go b/winlogbeat/sys/wineventlog/iterator.go index 26492fe96b0c..7cfb2b7cc38d 100644 --- a/winlogbeat/sys/wineventlog/iterator.go +++ b/winlogbeat/sys/wineventlog/iterator.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/iterator_test.go b/winlogbeat/sys/wineventlog/iterator_test.go index b57e150dbeb2..87a4b40e949d 100644 --- a/winlogbeat/sys/wineventlog/iterator_test.go +++ b/winlogbeat/sys/wineventlog/iterator_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/metadata_store.go b/winlogbeat/sys/wineventlog/metadata_store.go index c568c24d3202..d4333d78df1a 100644 --- a/winlogbeat/sys/wineventlog/metadata_store.go +++ b/winlogbeat/sys/wineventlog/metadata_store.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/metadata_store_test.go b/winlogbeat/sys/wineventlog/metadata_store_test.go index 205f703105d1..72018952a21f 100644 --- a/winlogbeat/sys/wineventlog/metadata_store_test.go +++ b/winlogbeat/sys/wineventlog/metadata_store_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/publisher_metadata.go b/winlogbeat/sys/wineventlog/publisher_metadata.go index b316d1028b2f..ecbbf8f7b65e 100644 --- a/winlogbeat/sys/wineventlog/publisher_metadata.go +++ b/winlogbeat/sys/wineventlog/publisher_metadata.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/publisher_metadata_test.go b/winlogbeat/sys/wineventlog/publisher_metadata_test.go index 1f5f5a2b85c1..33e55e67797c 100644 --- a/winlogbeat/sys/wineventlog/publisher_metadata_test.go +++ b/winlogbeat/sys/wineventlog/publisher_metadata_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/query_test.go b/winlogbeat/sys/wineventlog/query_test.go index d487f55740b9..f31f98ac6c95 100644 --- a/winlogbeat/sys/wineventlog/query_test.go +++ b/winlogbeat/sys/wineventlog/query_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package wineventlog diff --git a/winlogbeat/sys/wineventlog/renderer.go b/winlogbeat/sys/wineventlog/renderer.go index 40392abd15d5..8a16567e7ad1 100644 --- a/winlogbeat/sys/wineventlog/renderer.go +++ b/winlogbeat/sys/wineventlog/renderer.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/renderer_test.go b/winlogbeat/sys/wineventlog/renderer_test.go index 4b75ff711682..ea0c179cd1ea 100644 --- a/winlogbeat/sys/wineventlog/renderer_test.go +++ b/winlogbeat/sys/wineventlog/renderer_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/stringinserts.go b/winlogbeat/sys/wineventlog/stringinserts.go index f53039732d08..6d42a7df400a 100644 --- a/winlogbeat/sys/wineventlog/stringinserts.go +++ b/winlogbeat/sys/wineventlog/stringinserts.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/stringinserts_test.go b/winlogbeat/sys/wineventlog/stringinserts_test.go index 518b01e53428..8c2cc11b0940 100644 --- a/winlogbeat/sys/wineventlog/stringinserts_test.go +++ b/winlogbeat/sys/wineventlog/stringinserts_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/util_test.go b/winlogbeat/sys/wineventlog/util_test.go index 40f52093eeb3..0c1c9cbf5ce7 100644 --- a/winlogbeat/sys/wineventlog/util_test.go +++ b/winlogbeat/sys/wineventlog/util_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/x-pack/auditbeat/magefile.go b/x-pack/auditbeat/magefile.go index 7484e6465b76..b2d52ebbcbcf 100644 --- a/x-pack/auditbeat/magefile.go +++ b/x-pack/auditbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/auditbeat/module/system/login/config.go b/x-pack/auditbeat/module/system/login/config.go index 2cdfca549046..a8360d944f3f 100644 --- a/x-pack/auditbeat/module/system/login/config.go +++ b/x-pack/auditbeat/module/system/login/config.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/login.go b/x-pack/auditbeat/module/system/login/login.go index 01e96e4dbc15..82c1e384ab79 100644 --- a/x-pack/auditbeat/module/system/login/login.go +++ b/x-pack/auditbeat/module/system/login/login.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/login_other.go b/x-pack/auditbeat/module/system/login/login_other.go index a0d4124bb411..fcad887ed581 100644 --- a/x-pack/auditbeat/module/system/login/login_other.go +++ b/x-pack/auditbeat/module/system/login/login_other.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !linux // +build !linux package login diff --git a/x-pack/auditbeat/module/system/login/login_test.go b/x-pack/auditbeat/module/system/login/login_test.go index 0bf92925db8e..e0a6fe357678 100644 --- a/x-pack/auditbeat/module/system/login/login_test.go +++ b/x-pack/auditbeat/module/system/login/login_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/utmp.go b/x-pack/auditbeat/module/system/login/utmp.go index 273229f051a1..ee0b8b2f5fcf 100644 --- a/x-pack/auditbeat/module/system/login/utmp.go +++ b/x-pack/auditbeat/module/system/login/utmp.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/utmp_c.go b/x-pack/auditbeat/module/system/login/utmp_c.go index 0d42367a1a81..32ff263f929e 100644 --- a/x-pack/auditbeat/module/system/login/utmp_c.go +++ b/x-pack/auditbeat/module/system/login/utmp_c.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux // Pure Go reader for UTMP formatted files. diff --git a/x-pack/auditbeat/module/system/package/config.go b/x-pack/auditbeat/module/system/package/config.go index 5af2d0a7d6a7..ca0a921316d7 100644 --- a/x-pack/auditbeat/module/system/package/config.go +++ b/x-pack/auditbeat/module/system/package/config.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package.go b/x-pack/auditbeat/module/system/package/package.go index f988030b8d04..b4eddbb726f9 100644 --- a/x-pack/auditbeat/module/system/package/package.go +++ b/x-pack/auditbeat/module/system/package/package.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_homebrew.go b/x-pack/auditbeat/module/system/package/package_homebrew.go index c3ec3dc5565b..8227e5e0241b 100644 --- a/x-pack/auditbeat/module/system/package/package_homebrew.go +++ b/x-pack/auditbeat/module/system/package/package_homebrew.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_homebrew_test.go b/x-pack/auditbeat/module/system/package/package_homebrew_test.go index 3ae7baa4fd86..ac40fce9068b 100644 --- a/x-pack/auditbeat/module/system/package/package_homebrew_test.go +++ b/x-pack/auditbeat/module/system/package/package_homebrew_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_test.go b/x-pack/auditbeat/module/system/package/package_test.go index 14d0abd03aba..25b53a3feb82 100644 --- a/x-pack/auditbeat/module/system/package/package_test.go +++ b/x-pack/auditbeat/module/system/package/package_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_windows.go b/x-pack/auditbeat/module/system/package/package_windows.go index 9b39395436a1..a10516b7361b 100644 --- a/x-pack/auditbeat/module/system/package/package_windows.go +++ b/x-pack/auditbeat/module/system/package/package_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_common_test.go b/x-pack/auditbeat/module/system/package/rpm_common_test.go index ce384e9165c2..55bbcc06346b 100644 --- a/x-pack/auditbeat/module/system/package/rpm_common_test.go +++ b/x-pack/auditbeat/module/system/package/rpm_common_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_linux.go b/x-pack/auditbeat/module/system/package/rpm_linux.go index 399c121f878c..3215bcf9c168 100644 --- a/x-pack/auditbeat/module/system/package/rpm_linux.go +++ b/x-pack/auditbeat/module/system/package/rpm_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_linux_test.go b/x-pack/auditbeat/module/system/package/rpm_linux_test.go index 1eb42639fa97..691fb63e339f 100644 --- a/x-pack/auditbeat/module/system/package/rpm_linux_test.go +++ b/x-pack/auditbeat/module/system/package/rpm_linux_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_others.go b/x-pack/auditbeat/module/system/package/rpm_others.go index 1c453f7353f5..8e441026ff3b 100644 --- a/x-pack/auditbeat/module/system/package/rpm_others.go +++ b/x-pack/auditbeat/module/system/package/rpm_others.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (!linux || !cgo) && !windows // +build !linux !cgo // +build !windows diff --git a/x-pack/auditbeat/module/system/socket/arch_386.go b/x-pack/auditbeat/module/system/socket/arch_386.go index db1872d9248e..e2eca4dc4730 100644 --- a/x-pack/auditbeat/module/system/socket/arch_386.go +++ b/x-pack/auditbeat/module/system/socket/arch_386.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package socket diff --git a/x-pack/auditbeat/module/system/socket/arch_amd64.go b/x-pack/auditbeat/module/system/socket/arch_amd64.go index 4f7c578f8ee5..b8bd0cf1d431 100644 --- a/x-pack/auditbeat/module/system/socket/arch_amd64.go +++ b/x-pack/auditbeat/module/system/socket/arch_amd64.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package socket diff --git a/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go b/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go index 98cce6fbdf09..9c430bb2023f 100644 --- a/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go +++ b/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package afpacket diff --git a/x-pack/auditbeat/module/system/socket/events.go b/x-pack/auditbeat/module/system/socket/events.go index 49880528704b..157d5ec92d04 100644 --- a/x-pack/auditbeat/module/system/socket/events.go +++ b/x-pack/auditbeat/module/system/socket/events.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/guess/creds.go b/x-pack/auditbeat/module/system/socket/guess/creds.go index 7e3bd4791d98..61f9a570daf7 100644 --- a/x-pack/auditbeat/module/system/socket/guess/creds.go +++ b/x-pack/auditbeat/module/system/socket/guess/creds.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go b/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go index aae0e2fd9b6c..bc86aa817b55 100644 --- a/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go +++ b/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/deref.go b/x-pack/auditbeat/module/system/socket/guess/deref.go index 648580e5cc04..cc06125c82a5 100644 --- a/x-pack/auditbeat/module/system/socket/guess/deref.go +++ b/x-pack/auditbeat/module/system/socket/guess/deref.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/guess.go b/x-pack/auditbeat/module/system/socket/guess/guess.go index 21fe3e380092..e9040bb6a66e 100644 --- a/x-pack/auditbeat/module/system/socket/guess/guess.go +++ b/x-pack/auditbeat/module/system/socket/guess/guess.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/helpers.go b/x-pack/auditbeat/module/system/socket/guess/helpers.go index 5aa8ac37db1a..d0b9a2875bfb 100644 --- a/x-pack/auditbeat/module/system/socket/guess/helpers.go +++ b/x-pack/auditbeat/module/system/socket/guess/helpers.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/inetsock.go b/x-pack/auditbeat/module/system/socket/guess/inetsock.go index 57a133d00562..8e435d42b030 100644 --- a/x-pack/auditbeat/module/system/socket/guess/inetsock.go +++ b/x-pack/auditbeat/module/system/socket/guess/inetsock.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/inetsock6.go b/x-pack/auditbeat/module/system/socket/guess/inetsock6.go index 37cd56b06fbf..b61486849bc2 100644 --- a/x-pack/auditbeat/module/system/socket/guess/inetsock6.go +++ b/x-pack/auditbeat/module/system/socket/guess/inetsock6.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go b/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go index 2e66eb2a724b..293a79eff91f 100644 --- a/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go +++ b/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/iplocalout.go b/x-pack/auditbeat/module/system/socket/guess/iplocalout.go index a06571391781..0058cf282749 100644 --- a/x-pack/auditbeat/module/system/socket/guess/iplocalout.go +++ b/x-pack/auditbeat/module/system/socket/guess/iplocalout.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/registry.go b/x-pack/auditbeat/module/system/socket/guess/registry.go index 66971a1f1d5e..89af3d2539be 100644 --- a/x-pack/auditbeat/module/system/socket/guess/registry.go +++ b/x-pack/auditbeat/module/system/socket/guess/registry.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/skbuff.go b/x-pack/auditbeat/module/system/socket/guess/skbuff.go index 9960c036465d..a90a49644a46 100644 --- a/x-pack/auditbeat/module/system/socket/guess/skbuff.go +++ b/x-pack/auditbeat/module/system/socket/guess/skbuff.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go b/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go index 356442b1d867..2817a41e5d9e 100644 --- a/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go +++ b/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go b/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go index 8d1d0b15b252..0ce53e84883c 100644 --- a/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go +++ b/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/socketsk.go b/x-pack/auditbeat/module/system/socket/guess/socketsk.go index 072eba6b66b8..fa9c0b454c4e 100644 --- a/x-pack/auditbeat/module/system/socket/guess/socketsk.go +++ b/x-pack/auditbeat/module/system/socket/guess/socketsk.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/syscallargs.go b/x-pack/auditbeat/module/system/socket/guess/syscallargs.go index 44796b73fa98..f3a17017ab22 100644 --- a/x-pack/auditbeat/module/system/socket/guess/syscallargs.go +++ b/x-pack/auditbeat/module/system/socket/guess/syscallargs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go index 60bc66f7f91a..9e705ad2ab93 100644 --- a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go +++ b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go index 09004388ada1..55000d7f8f22 100644 --- a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go +++ b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go b/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go index de5889d93121..66711d57d7db 100644 --- a/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go +++ b/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go b/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go index c257c08c31d3..300cd2706afd 100644 --- a/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go +++ b/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/helper/loopback.go b/x-pack/auditbeat/module/system/socket/helper/loopback.go index 645e3d43d950..4cc0ca3eb56d 100644 --- a/x-pack/auditbeat/module/system/socket/helper/loopback.go +++ b/x-pack/auditbeat/module/system/socket/helper/loopback.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/helper/probes.go b/x-pack/auditbeat/module/system/socket/helper/probes.go index f04aa568c4ff..ddffe15d3186 100644 --- a/x-pack/auditbeat/module/system/socket/helper/probes.go +++ b/x-pack/auditbeat/module/system/socket/helper/probes.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/helper/types.go b/x-pack/auditbeat/module/system/socket/helper/types.go index 711bf2f933f8..749322e9dfc9 100644 --- a/x-pack/auditbeat/module/system/socket/helper/types.go +++ b/x-pack/auditbeat/module/system/socket/helper/types.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/kprobes.go b/x-pack/auditbeat/module/system/socket/kprobes.go index c2d3fa937786..e5f5695177ab 100644 --- a/x-pack/auditbeat/module/system/socket/kprobes.go +++ b/x-pack/auditbeat/module/system/socket/kprobes.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/kprobes_test.go b/x-pack/auditbeat/module/system/socket/kprobes_test.go index 8e6b84abaa44..08b6caa8b608 100644 --- a/x-pack/auditbeat/module/system/socket/kprobes_test.go +++ b/x-pack/auditbeat/module/system/socket/kprobes_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/socket_linux.go b/x-pack/auditbeat/module/system/socket/socket_linux.go index 36ae6276e14a..e7f1a059dd1e 100644 --- a/x-pack/auditbeat/module/system/socket/socket_linux.go +++ b/x-pack/auditbeat/module/system/socket/socket_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/socket_other.go b/x-pack/auditbeat/module/system/socket/socket_other.go index f9ef3d5a11b4..eb50e63b37cb 100644 --- a/x-pack/auditbeat/module/system/socket/socket_other.go +++ b/x-pack/auditbeat/module/system/socket/socket_other.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !linux // +build !linux package socket diff --git a/x-pack/auditbeat/module/system/socket/state.go b/x-pack/auditbeat/module/system/socket/state.go index 369ba6705b09..dc17108b52ea 100644 --- a/x-pack/auditbeat/module/system/socket/state.go +++ b/x-pack/auditbeat/module/system/socket/state.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/state_test.go b/x-pack/auditbeat/module/system/socket/state_test.go index f326a28eeaa5..dc059f4a43d0 100644 --- a/x-pack/auditbeat/module/system/socket/state_test.go +++ b/x-pack/auditbeat/module/system/socket/state_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/template.go b/x-pack/auditbeat/module/system/socket/template.go index 425692c76818..c5f2b5555de0 100644 --- a/x-pack/auditbeat/module/system/socket/template.go +++ b/x-pack/auditbeat/module/system/socket/template.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/user/user.go b/x-pack/auditbeat/module/system/user/user.go index 59f23e566e83..69fb25e7187f 100644 --- a/x-pack/auditbeat/module/system/user/user.go +++ b/x-pack/auditbeat/module/system/user/user.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package user diff --git a/x-pack/auditbeat/module/system/user/user_test.go b/x-pack/auditbeat/module/system/user/user_test.go index a8fd6f852389..65e8ae455f07 100644 --- a/x-pack/auditbeat/module/system/user/user_test.go +++ b/x-pack/auditbeat/module/system/user/user_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package user diff --git a/x-pack/auditbeat/module/system/user/users_linux.go b/x-pack/auditbeat/module/system/user/users_linux.go index 8efab35b6332..f564c282cbda 100644 --- a/x-pack/auditbeat/module/system/user/users_linux.go +++ b/x-pack/auditbeat/module/system/user/users_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package user diff --git a/x-pack/auditbeat/module/system/user/users_other.go b/x-pack/auditbeat/module/system/user/users_other.go index ed640f024fa1..0922d715ab16 100644 --- a/x-pack/auditbeat/module/system/user/users_other.go +++ b/x-pack/auditbeat/module/system/user/users_other.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !linux || !cgo // +build !linux !cgo package user diff --git a/x-pack/auditbeat/tracing/cpu.go b/x-pack/auditbeat/tracing/cpu.go index 260067a8ab33..800d08ebe9a9 100644 --- a/x-pack/auditbeat/tracing/cpu.go +++ b/x-pack/auditbeat/tracing/cpu.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/cpu_test.go b/x-pack/auditbeat/tracing/cpu_test.go index 9b5b70199671..6f69e32f70a3 100644 --- a/x-pack/auditbeat/tracing/cpu_test.go +++ b/x-pack/auditbeat/tracing/cpu_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/decoder.go b/x-pack/auditbeat/tracing/decoder.go index 4a456bb9430b..88797351e1e5 100644 --- a/x-pack/auditbeat/tracing/decoder.go +++ b/x-pack/auditbeat/tracing/decoder.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/endian.go b/x-pack/auditbeat/tracing/endian.go index b3a5a5b1ffe9..180f75e493b7 100644 --- a/x-pack/auditbeat/tracing/endian.go +++ b/x-pack/auditbeat/tracing/endian.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/events_test.go b/x-pack/auditbeat/tracing/events_test.go index d75c4e1f69a8..180761f7700e 100644 --- a/x-pack/auditbeat/tracing/events_test.go +++ b/x-pack/auditbeat/tracing/events_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/int_aligned.go b/x-pack/auditbeat/tracing/int_aligned.go index 9ef1851d0611..3669db4fde2c 100644 --- a/x-pack/auditbeat/tracing/int_aligned.go +++ b/x-pack/auditbeat/tracing/int_aligned.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build linux -// +build !386,!amd64,!amd64p32 +//go:build linux && !386 && !amd64 && !amd64p32 +// +build linux,!386,!amd64,!amd64p32 // Alignment-safe integer reading and writing functions. diff --git a/x-pack/auditbeat/tracing/int_unaligned.go b/x-pack/auditbeat/tracing/int_unaligned.go index 4fd6774279b1..86ebd4591a60 100644 --- a/x-pack/auditbeat/tracing/int_unaligned.go +++ b/x-pack/auditbeat/tracing/int_unaligned.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && (386 || amd64 || amd64p32) // +build linux // +build 386 amd64 amd64p32 diff --git a/x-pack/auditbeat/tracing/perfevent.go b/x-pack/auditbeat/tracing/perfevent.go index 4189abda59a3..181bc4801417 100644 --- a/x-pack/auditbeat/tracing/perfevent.go +++ b/x-pack/auditbeat/tracing/perfevent.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/probe.go b/x-pack/auditbeat/tracing/probe.go index aed19805adc5..79726b9aa5bf 100644 --- a/x-pack/auditbeat/tracing/probe.go +++ b/x-pack/auditbeat/tracing/probe.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/tracefs.go b/x-pack/auditbeat/tracing/tracefs.go index b082770bcf7d..110e7e4d3165 100644 --- a/x-pack/auditbeat/tracing/tracefs.go +++ b/x-pack/auditbeat/tracing/tracefs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/dockerlogbeat/magefile.go b/x-pack/dockerlogbeat/magefile.go index 5251e9285a18..aac142e92ad3 100644 --- a/x-pack/dockerlogbeat/magefile.go +++ b/x-pack/dockerlogbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/elastic-agent/CHANGELOG.next.asciidoc b/x-pack/elastic-agent/CHANGELOG.next.asciidoc index e51e9f1ed665..95f7b90e89b2 100644 --- a/x-pack/elastic-agent/CHANGELOG.next.asciidoc +++ b/x-pack/elastic-agent/CHANGELOG.next.asciidoc @@ -145,3 +145,4 @@ - Agent now adapts the beats queue size based on output settings. {issue}26638[26638] {pull}27429[27429] - Support ephemeral containers in Kubernetes dynamic provider. {issue}27020[#27020] {pull}27707[27707] - Add complete k8s metadata through composable provider. {pull}27691[27691] +- Add `KIBANA_FLEET_SERVICE_TOKEN` to Elastic Agent container. {pull}28096[28096] diff --git a/x-pack/elastic-agent/Dockerfile b/x-pack/elastic-agent/Dockerfile index 463351d15e42..59d234d6713c 100644 --- a/x-pack/elastic-agent/Dockerfile +++ b/x-pack/elastic-agent/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.16.6 +ARG GO_VERSION=1.17.1 FROM circleci/golang:${GO_VERSION} diff --git a/x-pack/elastic-agent/magefile.go b/x-pack/elastic-agent/magefile.go index bacd468b44d2..102ba5b86b0e 100644 --- a/x-pack/elastic-agent/magefile.go +++ b/x-pack/elastic-agent/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go b/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go index 181bda084ff5..d5c407d17d74 100644 --- a/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go +++ b/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package info diff --git a/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go b/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go index 67a2e112a818..d5550dbb2aed 100644 --- a/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package info diff --git a/x-pack/elastic-agent/pkg/agent/application/paths/paths.go b/x-pack/elastic-agent/pkg/agent/application/paths/paths.go index 0ee4f459c00f..cc0487bb2a87 100644 --- a/x-pack/elastic-agent/pkg/agent/application/paths/paths.go +++ b/x-pack/elastic-agent/pkg/agent/application/paths/paths.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !darwin -// +build !windows +//go:build !darwin && !windows +// +build !darwin,!windows package paths diff --git a/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go b/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go index 9a186a25e812..8482d88d5332 100644 --- a/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go +++ b/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build darwin // +build darwin package paths diff --git a/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go b/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go index 86020c270441..3250b847e987 100644 --- a/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package paths diff --git a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go index 9265ba152664..d703e64f5d74 100644 --- a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go +++ b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package reexec diff --git a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go index 7f2f3230dc50..f3e038557618 100644 --- a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package reexec diff --git a/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go b/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go index 09d87a82a5d0..4601a1f74d95 100644 --- a/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go +++ b/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !darwin -// +build !windows +//go:build !darwin && !windows +// +build !darwin,!windows package upgrade diff --git a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go index 77c3f7d5f4f8..5db095ce7700 100644 --- a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go +++ b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build darwin // +build darwin package upgrade diff --git a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go index 61821e69572a..28f92e93b3ed 100644 --- a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package upgrade diff --git a/x-pack/elastic-agent/pkg/agent/cmd/container.go b/x-pack/elastic-agent/pkg/agent/cmd/container.go index 5faba8548c4a..8d0a4bb42874 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/container.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/container.go @@ -471,6 +471,7 @@ func kibanaClient(cfg kibanaConfig, headers map[string]string) (*kibana.Client, Host: cfg.Fleet.Host, Username: cfg.Fleet.Username, Password: cfg.Fleet.Password, + ServiceToken: cfg.Fleet.ServiceToken, IgnoreVersion: true, Transport: transport, Headers: headers, diff --git a/x-pack/elastic-agent/pkg/agent/cmd/reexec.go b/x-pack/elastic-agent/pkg/agent/cmd/reexec.go index 2ac2425b9310..ba48afd46493 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/reexec.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/reexec.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package cmd diff --git a/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go b/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go index be75784b4de0..dd2bfd4fc455 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package cmd diff --git a/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go b/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go index 4330c967e9f7..f0076af54353 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go @@ -53,11 +53,12 @@ type kibanaConfig struct { } type kibanaFleetConfig struct { - CA string `config:"ca"` - Host string `config:"host"` - Password string `config:"password"` - Setup bool `config:"setup"` - Username string `config:"username"` + CA string `config:"ca"` + Host string `config:"host"` + Password string `config:"password"` + Setup bool `config:"setup"` + Username string `config:"username"` + ServiceToken string `config:"service_token"` } func defaultAccessConfig() (setupConfig, error) { @@ -104,11 +105,12 @@ func defaultAccessConfig() (setupConfig, error) { // Remove FLEET_SETUP in 8.x // The FLEET_SETUP environment variable boolean is a fallback to the old name. The name was updated to // reflect that its setting up Fleet in Kibana versus setting up Fleet Server. - Setup: envBool("KIBANA_FLEET_SETUP", "FLEET_SETUP"), - Host: envWithDefault("http://kibana:5601", "KIBANA_FLEET_HOST", "KIBANA_HOST"), - Username: envWithDefault("elastic", "KIBANA_FLEET_USERNAME", "KIBANA_USERNAME", "ELASTICSEARCH_USERNAME"), - Password: envWithDefault("changeme", "KIBANA_FLEET_PASSWORD", "KIBANA_PASSWORD", "ELASTICSEARCH_PASSWORD"), - CA: envWithDefault("", "KIBANA_FLEET_CA", "KIBANA_CA", "ELASTICSEARCH_CA"), + Setup: envBool("KIBANA_FLEET_SETUP", "FLEET_SETUP"), + Host: envWithDefault("http://kibana:5601", "KIBANA_FLEET_HOST", "KIBANA_HOST"), + Username: envWithDefault("elastic", "KIBANA_FLEET_USERNAME", "KIBANA_USERNAME", "ELASTICSEARCH_USERNAME"), + Password: envWithDefault("changeme", "KIBANA_FLEET_PASSWORD", "KIBANA_PASSWORD", "ELASTICSEARCH_PASSWORD"), + ServiceToken: envWithDefault("", "KIBANA_FLEET_SERVICE_TOKEN", "FLEET_SERVER_SERVICE_TOKEN"), + CA: envWithDefault("", "KIBANA_FLEET_CA", "KIBANA_CA", "ELASTICSEARCH_CA"), }, RetrySleepDuration: retrySleepDuration, RetryMaxCount: retryMaxCount, diff --git a/x-pack/elastic-agent/pkg/agent/control/addr.go b/x-pack/elastic-agent/pkg/agent/control/addr.go index 7eca51789dbe..78f35f8f4790 100644 --- a/x-pack/elastic-agent/pkg/agent/control/addr.go +++ b/x-pack/elastic-agent/pkg/agent/control/addr.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package control diff --git a/x-pack/elastic-agent/pkg/agent/control/addr_windows.go b/x-pack/elastic-agent/pkg/agent/control/addr_windows.go index 49c6e75407b8..8cd2c2df371f 100644 --- a/x-pack/elastic-agent/pkg/agent/control/addr_windows.go +++ b/x-pack/elastic-agent/pkg/agent/control/addr_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package control diff --git a/x-pack/elastic-agent/pkg/agent/control/client/dial.go b/x-pack/elastic-agent/pkg/agent/control/client/dial.go index 56313b12c82a..93c6033f7187 100644 --- a/x-pack/elastic-agent/pkg/agent/control/client/dial.go +++ b/x-pack/elastic-agent/pkg/agent/control/client/dial.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package client diff --git a/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go b/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go index c061753d327f..b180a085c1f3 100644 --- a/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go +++ b/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package client diff --git a/x-pack/elastic-agent/pkg/agent/control/server/listener.go b/x-pack/elastic-agent/pkg/agent/control/server/listener.go index 02ef034ac386..0c6ce12cdea7 100644 --- a/x-pack/elastic-agent/pkg/agent/control/server/listener.go +++ b/x-pack/elastic-agent/pkg/agent/control/server/listener.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package server diff --git a/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go b/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go index d9178c504ee6..f8658c5c5f07 100644 --- a/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go +++ b/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package server diff --git a/x-pack/elastic-agent/pkg/agent/install/install_unix.go b/x-pack/elastic-agent/pkg/agent/install/install_unix.go index 07d696d580a1..a1f0bac246ca 100644 --- a/x-pack/elastic-agent/pkg/agent/install/install_unix.go +++ b/x-pack/elastic-agent/pkg/agent/install/install_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/install_windows.go b/x-pack/elastic-agent/pkg/agent/install/install_windows.go index 247e774b36b9..e2ee77a9a162 100644 --- a/x-pack/elastic-agent/pkg/agent/install/install_windows.go +++ b/x-pack/elastic-agent/pkg/agent/install/install_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/perms_unix.go b/x-pack/elastic-agent/pkg/agent/install/perms_unix.go index 9a9a2638dfc1..0d1db46cfe90 100644 --- a/x-pack/elastic-agent/pkg/agent/install/perms_unix.go +++ b/x-pack/elastic-agent/pkg/agent/install/perms_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/perms_windows.go b/x-pack/elastic-agent/pkg/agent/install/perms_windows.go index 8ca5fd3057ee..5ab20a5a94cf 100644 --- a/x-pack/elastic-agent/pkg/agent/install/perms_windows.go +++ b/x-pack/elastic-agent/pkg/agent/install/perms_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/root_unix.go b/x-pack/elastic-agent/pkg/agent/install/root_unix.go index b8f6990f6a9d..753b0106eb15 100644 --- a/x-pack/elastic-agent/pkg/agent/install/root_unix.go +++ b/x-pack/elastic-agent/pkg/agent/install/root_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/root_windows.go b/x-pack/elastic-agent/pkg/agent/install/root_windows.go index 372a75efe0aa..da2f67e6f645 100644 --- a/x-pack/elastic-agent/pkg/agent/install/root_windows.go +++ b/x-pack/elastic-agent/pkg/agent/install/root_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go b/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go index 964f262b29d9..d734890d7d7c 100644 --- a/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go +++ b/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go index dd40c53587c9..a721e7c6b075 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // TODO review the need for this +//go:build linux || darwin || windows // +build linux darwin windows package kubernetes diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go index a7f71cc32b5d..5e63a5ea309b 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // TODO review the need for this +//go:build linux || darwin || windows // +build linux darwin windows package kubernetesleaderelection diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go index 29463db148a2..dd25b79b762d 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // TODO review the need for this +//go:build linux || darwin || windows // +build linux darwin windows package kubernetessecrets diff --git a/x-pack/elastic-agent/pkg/config/operations/svc_unix.go b/x-pack/elastic-agent/pkg/config/operations/svc_unix.go index ba63130b89f5..f2e9d4905e32 100644 --- a/x-pack/elastic-agent/pkg/config/operations/svc_unix.go +++ b/x-pack/elastic-agent/pkg/config/operations/svc_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package operations diff --git a/x-pack/elastic-agent/pkg/config/operations/svc_windows.go b/x-pack/elastic-agent/pkg/config/operations/svc_windows.go index 1d976d9be2b9..314d71f0e8c3 100644 --- a/x-pack/elastic-agent/pkg/config/operations/svc_windows.go +++ b/x-pack/elastic-agent/pkg/config/operations/svc_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package operations diff --git a/x-pack/elastic-agent/pkg/core/app/process_cred.go b/x-pack/elastic-agent/pkg/core/app/process_cred.go index c84597ab7ced..261ed358228f 100644 --- a/x-pack/elastic-agent/pkg/core/app/process_cred.go +++ b/x-pack/elastic-agent/pkg/core/app/process_cred.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux || darwin // +build linux darwin package app diff --git a/x-pack/elastic-agent/pkg/core/app/process_cred_other.go b/x-pack/elastic-agent/pkg/core/app/process_cred_other.go index 6929278300b2..49aa0ccd613b 100644 --- a/x-pack/elastic-agent/pkg/core/app/process_cred_other.go +++ b/x-pack/elastic-agent/pkg/core/app/process_cred_other.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !linux -// +build !darwin +//go:build !linux && !darwin +// +build !linux,!darwin package app diff --git a/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go b/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go index 867a4337159c..7e3e809e7bc6 100644 --- a/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go +++ b/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package process diff --git a/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go b/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go index ca2a03a8bff9..d5baeb1e8955 100644 --- a/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go +++ b/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package process diff --git a/x-pack/elastic-agent/pkg/core/process/cmd.go b/x-pack/elastic-agent/pkg/core/process/cmd.go index c9d93df4047a..171870db9be0 100644 --- a/x-pack/elastic-agent/pkg/core/process/cmd.go +++ b/x-pack/elastic-agent/pkg/core/process/cmd.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !linux -// +build !darwin +//go:build !linux && !darwin +// +build !linux,!darwin package process diff --git a/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go b/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go index 73ad4932d69f..96de3e4366ff 100644 --- a/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go +++ b/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build darwin // +build darwin package process diff --git a/x-pack/elastic-agent/pkg/core/process/cmd_linux.go b/x-pack/elastic-agent/pkg/core/process/cmd_linux.go index ce6762713c0e..d98b9addc773 100644 --- a/x-pack/elastic-agent/pkg/core/process/cmd_linux.go +++ b/x-pack/elastic-agent/pkg/core/process/cmd_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package process diff --git a/x-pack/filebeat/Jenkinsfile.yml b/x-pack/filebeat/Jenkinsfile.yml index 09c837bccf65..0e32ddefc47b 100644 --- a/x-pack/filebeat/Jenkinsfile.yml +++ b/x-pack/filebeat/Jenkinsfile.yml @@ -44,9 +44,9 @@ stages: pythonIntegTest: mage: "mage pythonIntegTest" ## run the ITs only if the changeset affects a specific module. stage: mandatory - module-compat-7.11: - mage: >- ## Run module integration tests under ES 7.11 to ensure ingest pipeline compatibility. - STACK_ENVIRONMENT=7.11 + module-compat-prev-minor: + mage: >- ## Run module integration tests under previous minor of ES to ensure ingest pipeline compatibility. + STACK_ENVIRONMENT=prev-minor TESTING_FILEBEAT_SKIP_DIFF=1 PYTEST_ADDOPTS='-k test_xpack_modules' mage pythonIntegTest diff --git a/x-pack/filebeat/input/awss3/input_integration_test.go b/x-pack/filebeat/input/awss3/input_integration_test.go index 7b157dcfb6dd..9c6ebb3cac97 100644 --- a/x-pack/filebeat/input/awss3/input_integration_test.go +++ b/x-pack/filebeat/input/awss3/input_integration_test.go @@ -4,8 +4,8 @@ // See _meta/terraform/README.md for integration test usage instructions. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package awss3 diff --git a/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go b/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go index e14bb41a918f..99fd3c728f2d 100644 --- a/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go +++ b/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package azureeventhub diff --git a/x-pack/filebeat/input/cloudfoundry/input_integration_test.go b/x-pack/filebeat/input/cloudfoundry/input_integration_test.go index ac53db9944ca..5cf2e956da52 100644 --- a/x-pack/filebeat/input/cloudfoundry/input_integration_test.go +++ b/x-pack/filebeat/input/cloudfoundry/input_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package cloudfoundry diff --git a/x-pack/filebeat/input/gcppubsub/input_test.go b/x-pack/filebeat/input/gcppubsub/input_test.go index e055ee39b97f..56a2cd3574ef 100644 --- a/x-pack/filebeat/input/gcppubsub/input_test.go +++ b/x-pack/filebeat/input/gcppubsub/input_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package gcppubsub diff --git a/x-pack/filebeat/input/netflow/decoder/fields/gen.go b/x-pack/filebeat/input/netflow/decoder/fields/gen.go index 2f5d04b28ad1..5b546932a0c6 100644 --- a/x-pack/filebeat/input/netflow/decoder/fields/gen.go +++ b/x-pack/filebeat/input/netflow/decoder/fields/gen.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/input/netflow/fields_gen.go b/x-pack/filebeat/input/netflow/fields_gen.go index 66b77283c90b..e4cb6071ebec 100644 --- a/x-pack/filebeat/input/netflow/fields_gen.go +++ b/x-pack/filebeat/input/netflow/fields_gen.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/input/netflow/input_test.go b/x-pack/filebeat/input/netflow/input_test.go index 9e6e8360e722..353486190779 100644 --- a/x-pack/filebeat/input/netflow/input_test.go +++ b/x-pack/filebeat/input/netflow/input_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package netflow diff --git a/x-pack/filebeat/magefile.go b/x-pack/filebeat/magefile.go index c4532d5f56aa..344f105b2197 100644 --- a/x-pack/filebeat/magefile.go +++ b/x-pack/filebeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js b/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js +++ b/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js b/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js +++ b/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js b/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js +++ b/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/cisco/asa/_meta/fields.yml b/x-pack/filebeat/module/cisco/asa/_meta/fields.yml index e321a6cf3a25..cad7404512d1 100644 --- a/x-pack/filebeat/module/cisco/asa/_meta/fields.yml +++ b/x-pack/filebeat/module/cisco/asa/_meta/fields.yml @@ -199,3 +199,9 @@ default_field: false description: > SA type (remote access or L2L) + + - name: session_type + type: keyword + default_field: false + description: > + Session type (for example, IPsec or UDP) diff --git a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log index e1666f724325..75271900c573 100644 --- a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log +++ b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log @@ -83,6 +83,7 @@ Apr 27 2020 02:03:03 dev01: %ASA-6-713904: All IPSec SA proposals found unaccept Apr 27 2020 02:03:03 dev01: %ASA-6-713903: IP = 192.128.1.1, All IPSec SA proposals found unacceptable! Apr 27 2020 02:03:03 dev01: %ASA-6-713902: Group = 100.60.140.10, All IPSec SA proposals found unacceptable! Apr 27 2020 02:03:03 dev01: %ASA-6-713901: Group = 100.60.140.10, IP = 192.128.1.1, All IPSec SA proposals found unacceptable! +Apr 27 02:03:03 dev01: %ASA-5-713049: Group = 100.60.140.10, Username = test_user, IP = 1.2.3.4, Security negotiation complete for User (test_user) Responder, Inbound SPI = 0x0000000, Outbound SPI = 0x0000000 Apr 27 2020 02:03:03 dev01: %ASA-4-106023: Deny protocol 47 src outside:100.66.124.24 dst inside:172.31.98.44 by access-group "inbound" Apr 27 2020 02:03:03 dev01: %ASA-4-106023: Deny icmp src OUTSIDE:2a05:d016:add:4002:91f2:a9b2:e09a:6fc6 dst OUTSIDE:fe00:afa0::1 (type 128, code 0) by access-group "OUTSIDE_in" Apr 27 2020 02:03:03 dev01: %ASA-4-302016: Teardown UDP connection 123364823 for OUTSIDE:82.0.0.1/500 to identity:85.0.0.1/500 duration 92:24:20 bytes 4671944 diff --git a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json index 8866c2baa1b1..88cc9aee21c5 100644 --- a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json +++ b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json @@ -3235,6 +3235,7 @@ }, { "cisco.asa.message_id": "113019", + "cisco.asa.session_type": "LAN-to-LAN", "destination.address": "91.240.17.178", "destination.as.number": 201126, "destination.as.organization.name": "CDW Ltd", @@ -3254,13 +3255,14 @@ ], "event.code": 113019, "event.dataset": "cisco.asa", - "event.duration": 0, + "event.duration": 1936000000000, "event.end": "2021-04-27T02:03:03.000-02:00", "event.kind": "event", "event.module": "cisco", "event.original": "%ASA-4-113019: Group = 91.240.17.178, Username = 91.240.17.178, IP = 91.240.17.178, Session disconnected. Session Type: LAN-to-LAN, Duration: 0h:32m:16s, Bytes xmt: 297103, Bytes rcv: 1216163, Reason: User Requested", + "event.reason": "User Requested", "event.severity": 4, - "event.start": "2021-04-27T04:03:03.000Z", + "event.start": "2021-04-27T03:30:47.000Z", "event.timezone": "-02:00", "event.type": [ "info" @@ -3285,6 +3287,7 @@ ], "service.type": "cisco", "source.bytes": 297103, + "source.user.group.name": "91.240.17.178", "source.user.name": "91.240.17.178", "tags": [ "cisco-asa", @@ -4268,6 +4271,57 @@ "forwarded" ] }, + { + "cisco.asa.message_id": "713049", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 713049, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-5-713049: Group = 100.60.140.10, Username = test_user, IP = 1.2.3.4, Security negotiation complete for User (test_user) Responder, Inbound SPI = 0x0000000, Outbound SPI = 0x0000000", + "event.severity": 5, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "host.hostname": "dev01", + "input.type": "log", + "log.level": "notification", + "log.offset": 12205, + "observer.hostname": "dev01", + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.hosts": [ + "dev01" + ], + "related.ip": [ + "1.2.3.4" + ], + "related.user": [ + "test_user" + ], + "service.type": "cisco", + "source.address": "1.2.3.4", + "source.geo.city_name": "Moscow", + "source.geo.continent_name": "Europe", + "source.geo.country_iso_code": "RU", + "source.geo.country_name": "Russia", + "source.geo.location.lat": 55.7527, + "source.geo.location.lon": 37.6172, + "source.geo.region_iso_code": "RU-MOW", + "source.geo.region_name": "Moscow", + "source.ip": "1.2.3.4", + "tags": [ + "cisco-asa", + "forwarded" + ], + "user.name": "test_user" + }, { "cisco.asa.destination_interface": "inside", "cisco.asa.message_id": "106023", @@ -4295,7 +4349,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12205, + "log.offset": 12414, "network.community_id": "1:Uo11LCySQ1S0c9jtHZVIb4Pm/2k=", "network.iana_number": 47, "observer.egress.interface.name": "inside", @@ -4346,7 +4400,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12341, + "log.offset": 12550, "network.community_id": "1:VA3lwFPBuRus2kxMs1BexFp+gp4=", "network.iana_number": 1, "network.transport": "icmp", @@ -4421,7 +4475,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12518, + "log.offset": 12727, "network.bytes": 4671944, "network.community_id": "1:rwM9yFUsWh6N2utKviU7S94dS9U=", "network.iana_number": 17, @@ -4482,7 +4536,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12677, + "log.offset": 12886, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", @@ -4523,7 +4577,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12907, + "log.offset": 13116, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", @@ -4564,7 +4618,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 13142, + "log.offset": 13351, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", @@ -4605,7 +4659,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 13384, + "log.offset": 13593, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", diff --git a/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log new file mode 100644 index 000000000000..8e53e5f2d898 --- /dev/null +++ b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log @@ -0,0 +1,5 @@ +Jun 08 2020 12:59:57: %ASA-4-113019: Group = TheBeatles, Username = Ringo, IP = 234.56.12.87, Session disconnected. Session Type: AnyConnect-Parent, Duration: 0h:01m:52s, Bytes xmt: 32452, Bytes rcv: 0, Reason: User Requested +Oct 20 2019 15:42:53: %ASA-4-113019: Group = TheBeatles, Username = John, IP = 234.28.45.42, Session disconnected. Session Type: SSL, Duration: 2h:27m:34s, Bytes xmt: 45323434, Bytes rcv: 43252324, Reason: Idle Timeout +Oct 20 2019 15:42:54: %ASA-4-722037: Group User IP <83.212.241.149> SVC closing connection: DPD failure. +Aug 6 2020 11:01:37: %ASA-4-722037: Group User IP <234.63.56.32> SVC closing connection: Transport closing. +Aug 6 2020 11:01:38: %ASA-4-722051: Group User IP <234.24.156.94> IPv4 Address <234.56.47.98> IPv6 address <::> assigned to session diff --git a/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json new file mode 100644 index 000000000000..154add732eb2 --- /dev/null +++ b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json @@ -0,0 +1,192 @@ +[ + { + "cisco.asa.message_id": "113019", + "cisco.asa.session_type": "AnyConnect-Parent", + "destination.address": "234.56.12.87", + "destination.bytes": 0, + "destination.ip": "234.56.12.87", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 113019, + "event.dataset": "cisco.asa", + "event.duration": 112000000000, + "event.end": "2020-06-08T12:59:57.000-02:00", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-113019: Group = TheBeatles, Username = Ringo, IP = 234.56.12.87, Session disconnected. Session Type: AnyConnect-Parent, Duration: 0h:01m:52s, Bytes xmt: 32452, Bytes rcv: 0, Reason: User Requested", + "event.reason": "User Requested", + "event.severity": 4, + "event.start": "2020-06-08T14:58:05.000Z", + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 0, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.ip": [ + "234.56.12.87" + ], + "related.user": [ + "Ringo" + ], + "service.type": "cisco", + "source.bytes": 32452, + "source.user.group.name": "TheBeatles", + "source.user.name": "Ringo", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.message_id": "113019", + "cisco.asa.session_type": "SSL", + "destination.address": "234.28.45.42", + "destination.bytes": 43252324, + "destination.ip": "234.28.45.42", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 113019, + "event.dataset": "cisco.asa", + "event.duration": 8854000000000, + "event.end": "2019-10-20T15:42:53.000-02:00", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-113019: Group = TheBeatles, Username = John, IP = 234.28.45.42, Session disconnected. Session Type: SSL, Duration: 2h:27m:34s, Bytes xmt: 45323434, Bytes rcv: 43252324, Reason: Idle Timeout", + "event.reason": "Idle Timeout", + "event.severity": 4, + "event.start": "2019-10-20T15:15:19.000Z", + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 226, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.ip": [ + "234.28.45.42" + ], + "related.user": [ + "John" + ], + "service.type": "cisco", + "source.bytes": 45323434, + "source.user.group.name": "TheBeatles", + "source.user.name": "John", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.message_id": "722037", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 722037, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-722037: Group User IP <83.212.241.149> SVC closing connection: DPD failure.", + "event.severity": 4, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 445, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "service.type": "cisco", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.message_id": "722037", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 722037, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-722037: Group User IP <234.63.56.32> SVC closing connection: Transport closing.", + "event.severity": 4, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 582, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "service.type": "cisco", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.assigned_ip": "234.56.47.98", + "cisco.asa.message_id": "722051", + "cisco.asa.webvpn.group_name": "GroupPolicy_TheBeatles", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 722051, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-722051: Group User IP <234.24.156.94> IPv4 Address <234.56.47.98> IPv6 address <::> assigned to session", + "event.severity": 4, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 724, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.ip": [ + "234.24.156.94" + ], + "related.user": [ + "George" + ], + "service.type": "cisco", + "source.address": "234.24.156.94", + "source.ip": "234.24.156.94", + "source.user.name": "George", + "tags": [ + "cisco-asa", + "forwarded" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/cisco/fields.go b/x-pack/filebeat/module/cisco/fields.go index a1e5fe24befa..f8b4209c028d 100644 --- a/x-pack/filebeat/module/cisco/fields.go +++ b/x-pack/filebeat/module/cisco/fields.go @@ -19,5 +19,5 @@ func init() { // AssetCisco returns asset data. // This is the base64 encoded zlib format compressed contents of module/cisco. func AssetCisco() string { - return "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" + return "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" } diff --git a/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js b/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js +++ b/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js b/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js +++ b/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go b/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go index 62fc5f419145..4c3fb120401f 100644 --- a/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go +++ b/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go b/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go index 0de448f23ce2..cd264c6b9177 100644 --- a/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go +++ b/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml b/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml index ee379156ce6d..65a1889f034c 100644 --- a/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml +++ b/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml @@ -326,7 +326,7 @@ processors: if: "ctx._temp_.cisco.message_id == '113019'" field: "message" description: "113019" - pattern: "Group = %{}, Username = %{source.user.name}, IP = %{destination.address}, Session disconnected. Session Type: %{}, Duration: %{_temp_.duration_hms}, Bytes xmt: %{source.bytes}, Bytes rcv: %{destination.bytes}, Reason: %{message}" + pattern: "Group = %{source.user.group.name}, Username = %{source.user.name}, IP = %{destination.address}, Session disconnected. Session Type: %{_temp_.cisco.session_type}, Duration: %{_temp_.duration_hms}, Bytes xmt: %{source.bytes}, Bytes rcv: %{destination.bytes}, Reason: %{event.reason}" - grok: if: '["302013", "302015"].contains(ctx._temp_.cisco.message_id)' field: "message" @@ -651,6 +651,13 @@ processors: field: "message" description: "713049" pattern: "Group = %{}, IP = %{source.address}, Security negotiation complete for LAN-to-LAN Group (%{}) %{}, Inbound SPI = %{}, Outbound SPI = %{}" + ignore_failure: true + - dissect: + if: "ctx._temp_.cisco.message_id == '713049'" + field: "message" + description: "713049" + pattern: "Group = %{}, Username = %{user.name}, IP = %{source.address}, Security negotiation complete for User (%{}) %{}, Inbound SPI = %{}, Outbound SPI = %{}" + ignore_failure: true - grok: if: "ctx._temp_.cisco.message_id == '716002'" field: "message" @@ -1318,7 +1325,7 @@ processors: } else if (c == (char)':') { total = (total + cur) * 60; cur = 0; - } else { + } else if (c != (char)'h' && c == (char)'m' && c == (char)'s') { return 0; } } diff --git a/x-pack/filebeat/module/cisco/shared/stringset.go b/x-pack/filebeat/module/cisco/shared/stringset.go index 8e1ecf3cdc00..4da16372259c 100644 --- a/x-pack/filebeat/module/cisco/shared/stringset.go +++ b/x-pack/filebeat/module/cisco/shared/stringset.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/module/coredns/log/test/coredns-json.log b/x-pack/filebeat/module/coredns/log/test/coredns-json.log index 9a2f9b6dea45..52f20388d107 100644 --- a/x-pack/filebeat/module/coredns/log/test/coredns-json.log +++ b/x-pack/filebeat/module/coredns/log/test/coredns-json.log @@ -1,3 +1,3 @@ -{"message":"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \"A IN httpbin.org.cluster.local. udp 43 false 512\" NXDOMAIN qr,rd,ra 136 0.000102078s", "stream": "stdout", "time": "2019-02-12T00:27:28.903433597Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": "kube-system", "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } -{"message":"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \"A IN httpbin.org. udp 29 false 512\" NOERROR qr,rd,ra 83 0.000082083s\n","stream":"stdout","time":"2019-03-19T02:57:23.214583742Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": "kube-system", "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } -{"message":"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \"AAAA IN czbaoyu.com. udp 29 false 512\" NOERROR qr,rd,ra 100 0.00006286s\n","stream":"stdout","time":"2019-03-11T07:16:34.013970788Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": "kube-system", "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } +{"message":"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \"A IN httpbin.org.cluster.local. udp 43 false 512\" NXDOMAIN qr,rd,ra 136 0.000102078s", "stream": "stdout", "time": "2019-02-12T00:27:28.903433597Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": { "name": "kube-system" }, "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } +{"message":"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \"A IN httpbin.org. udp 29 false 512\" NOERROR qr,rd,ra 83 0.000082083s\n","stream":"stdout","time":"2019-03-19T02:57:23.214583742Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": { "name": "kube-system" }, "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } +{"message":"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \"AAAA IN czbaoyu.com. udp 29 false 512\" NOERROR qr,rd,ra 100 0.00006286s\n","stream":"stdout","time":"2019-03-11T07:16:34.013970788Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": { "name": "kube-system" }, "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } diff --git a/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json b/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json index 9a1c8520b766..a16494f4b44e 100644 --- a/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json +++ b/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json @@ -20,7 +20,7 @@ "event.duration": 102078, "event.kind": "event", "event.module": "coredns", - "event.original": "{\"message\":\"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \\\"A IN httpbin.org.cluster.local. udp 43 false 512\\\" NXDOMAIN qr,rd,ra 136 0.000102078s\", \"stream\": \"stdout\", \"time\": \"2019-02-12T00:27:28.903433597Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": \"kube-system\", \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", + "event.original": "{\"message\":\"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \\\"A IN httpbin.org.cluster.local. udp 43 false 512\\\" NXDOMAIN qr,rd,ra 136 0.000102078s\", \"stream\": \"stdout\", \"time\": \"2019-02-12T00:27:28.903433597Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": { \"name\": \"kube-system\" }, \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", "event.outcome": "failure", "event.type": [ "protocol" @@ -30,7 +30,7 @@ "kubernetes.container.name": "coredns", "kubernetes.labels.k8s-app": "kube-dns", "kubernetes.labels.pod-template-hash": "86c58d9df4", - "kubernetes.namespace": "kube-system", + "kubernetes.namespace.name": "kube-system", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "coredns-86c58d9df4-jwhsg", "kubernetes.pod.uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", @@ -72,7 +72,7 @@ "event.duration": 82083, "event.kind": "event", "event.module": "coredns", - "event.original": "{\"message\":\"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \\\"A IN httpbin.org. udp 29 false 512\\\" NOERROR qr,rd,ra 83 0.000082083s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-19T02:57:23.214583742Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": \"kube-system\", \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", + "event.original": "{\"message\":\"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \\\"A IN httpbin.org. udp 29 false 512\\\" NOERROR qr,rd,ra 83 0.000082083s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-19T02:57:23.214583742Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": { \"name\": \"kube-system\" }, \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", "event.outcome": "success", "event.type": [ "protocol" @@ -82,13 +82,13 @@ "kubernetes.container.name": "coredns", "kubernetes.labels.k8s-app": "kube-dns", "kubernetes.labels.pod-template-hash": "86c58d9df4", - "kubernetes.namespace": "kube-system", + "kubernetes.namespace.name": "kube-system", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "coredns-86c58d9df4-jwhsg", "kubernetes.pod.uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "kubernetes.replicaset.name": "coredns-86c58d9df4", "log.level": "INFO", - "log.offset": 550, + "log.offset": 562, "message": "2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \"A IN httpbin.org. udp 29 false 512\" NOERROR qr,rd,ra 83 0.000082083s\n", "network.protocol": "dns", "network.transport": "udp", @@ -124,7 +124,7 @@ "event.duration": 62860, "event.kind": "event", "event.module": "coredns", - "event.original": "{\"message\":\"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \\\"AAAA IN czbaoyu.com. udp 29 false 512\\\" NOERROR qr,rd,ra 100 0.00006286s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-11T07:16:34.013970788Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": \"kube-system\", \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", + "event.original": "{\"message\":\"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \\\"AAAA IN czbaoyu.com. udp 29 false 512\\\" NOERROR qr,rd,ra 100 0.00006286s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-11T07:16:34.013970788Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": { \"name\": \"kube-system\" }, \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", "event.outcome": "success", "event.type": [ "protocol" @@ -134,13 +134,13 @@ "kubernetes.container.name": "coredns", "kubernetes.labels.k8s-app": "kube-dns", "kubernetes.labels.pod-template-hash": "86c58d9df4", - "kubernetes.namespace": "kube-system", + "kubernetes.namespace.name": "kube-system", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "coredns-86c58d9df4-jwhsg", "kubernetes.pod.uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "kubernetes.replicaset.name": "coredns-86c58d9df4", "log.level": "INFO", - "log.offset": 1081, + "log.offset": 1105, "message": "2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \"AAAA IN czbaoyu.com. udp 29 false 512\" NOERROR qr,rd,ra 100 0.00006286s\n", "network.protocol": "dns", "network.transport": "udp", @@ -155,4 +155,4 @@ "coredns" ] } -] \ No newline at end of file +] diff --git a/x-pack/filebeat/module/cylance/protect/config/liblogparser.js b/x-pack/filebeat/module/cylance/protect/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/cylance/protect/config/liblogparser.js +++ b/x-pack/filebeat/module/cylance/protect/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log index 31cb674f4c7f..65d689e46eb8 100644 --- a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log +++ b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log @@ -1,2 +1,2 @@ -{"message":"ACCESS [2019-04-10T03:49:34.451Z] \"GET /httpbin/status/501 HTTP/1.1\" 501 - 0 0 180 179 \"172.17.0.3\" \"curl/7.59.0\" \"413bf460-bd56-4515-ada4-2a69c5e78e54\" \"httpbin.org\" \"52.71.234.219:80\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": "default", "labels": { "service": "ambassador" }}} -{"message":"ACCESS [2019-04-06T06:20:05.972Z] \"- - -\" 0 UF,URX 0 0 0 - \"-\" \"-\" \"-\" \"-\" \"127.0.0.1:9200\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": "default", "labels": { "service": "ambassador" }}}} +{"message":"ACCESS [2019-04-10T03:49:34.451Z] \"GET /httpbin/status/501 HTTP/1.1\" 501 - 0 0 180 179 \"172.17.0.3\" \"curl/7.59.0\" \"413bf460-bd56-4515-ada4-2a69c5e78e54\" \"httpbin.org\" \"52.71.234.219:80\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": { "name": "default" }, "labels": { "service": "ambassador" }}} +{"message":"ACCESS [2019-04-06T06:20:05.972Z] \"- - -\" 0 UF,URX 0 0 0 - \"-\" \"-\" \"-\" \"-\" \"127.0.0.1:9200\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": { "name": "default" }, "labels": { "service": "ambassador" }}}} diff --git a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json index 483625d8bea9..ba4147a3f70a 100644 --- a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json +++ b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json @@ -42,7 +42,7 @@ "input.type": "log", "kubernetes.container.name": "ambassador", "kubernetes.labels.service": "ambassador", - "kubernetes.namespace": "default", + "kubernetes.namespace.name": "default", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "ambassador-76c58d9df4-jwhsg", "kubernetes.pod.uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", @@ -97,11 +97,11 @@ "input.type": "log", "kubernetes.container.name": "ambassador", "kubernetes.labels.service": "ambassador", - "kubernetes.namespace": "default", + "kubernetes.namespace.name": "default", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "ambassador-76c58d9df4-jwhsg", "kubernetes.pod.uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", - "log.offset": 518, + "log.offset": 530, "message": "ACCESS [2019-04-06T06:20:05.972Z] \"- - -\" 0 UF,URX 0 0 0 - \"-\" \"-\" \"-\" \"-\" \"127.0.0.1:9200\"", "network.transport": "tcp", "related.ip": [ @@ -113,4 +113,4 @@ "envoyproxy" ] } -] \ No newline at end of file +] diff --git a/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js b/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js +++ b/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js b/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js +++ b/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js b/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js +++ b/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js b/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js +++ b/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js b/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js +++ b/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js b/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js +++ b/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js b/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js +++ b/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/juniper/junos/config/liblogparser.js b/x-pack/filebeat/module/juniper/junos/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/juniper/junos/config/liblogparser.js +++ b/x-pack/filebeat/module/juniper/junos/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js b/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js +++ b/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/microsoft/defender_atp/ingest/pipeline.yml b/x-pack/filebeat/module/microsoft/defender_atp/ingest/pipeline.yml index aa8e3f976928..7a1d11e8af16 100644 --- a/x-pack/filebeat/module/microsoft/defender_atp/ingest/pipeline.yml +++ b/x-pack/filebeat/module/microsoft/defender_atp/ingest/pipeline.yml @@ -45,10 +45,11 @@ processors: - set: field: cloud.provider value: azure -- set: - field: '@timestamp' - value: '{{json.alertUpdateTime}}' - if: ctx.json?.alertUpdateTime != null +- date: + field: json.lastUpdateTime + formats: + - ISO8601 + if: ctx.json?.lastUpdateTime != null - rename: field: json.aadTenantId target_field: cloud.account.id diff --git a/x-pack/filebeat/module/microsoft/defender_atp/test/defender_atp-test.json.log-expected.json b/x-pack/filebeat/module/microsoft/defender_atp/test/defender_atp-test.json.log-expected.json index 81593221228f..df3441fb8b96 100644 --- a/x-pack/filebeat/module/microsoft/defender_atp/test/defender_atp-test.json.log-expected.json +++ b/x-pack/filebeat/module/microsoft/defender_atp/test/defender_atp-test.json.log-expected.json @@ -1,5 +1,6 @@ [ { + "@timestamp": "2020-07-03T15:15:39.130Z", "cloud.account.id": "123543-d66c-4c7e-9e30-40034eb7c6f3", "cloud.instance.id": "c5a964f417c11f6277d5bf9489f0d", "cloud.provider": "azure", @@ -53,6 +54,7 @@ "threat.technique.name": "Malware" }, { + "@timestamp": "2020-06-30T15:29:44.773Z", "cloud.account.id": "123543-d66c-4c7e-9e30-40034eb7c6f3", "cloud.instance.id": "543bc5a964f417c11f6277d5bf9489f0d", "cloud.provider": "azure", @@ -123,6 +125,7 @@ "user.name": "administrator1" }, { + "@timestamp": "2020-06-30T15:29:44.773Z", "cloud.account.id": "43521344-d66c-4c7e-9e30-40034eb7c6f3", "cloud.instance.id": "53425a964f417c11f6277d5bf9489f0d", "cloud.provider": "azure", @@ -184,6 +187,7 @@ "user.name": "administrator1" }, { + "@timestamp": "2020-06-30T11:13:12.900Z", "cloud.account.id": "1234543-d66c-4c7e-9e30-40034eb7c6f3", "cloud.instance.id": "t4563234bc5a964f417c11f6277d5bf9489f0d", "cloud.provider": "azure", diff --git a/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js b/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js +++ b/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js b/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js +++ b/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js b/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js +++ b/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js b/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js +++ b/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/snort/log/config/liblogparser.js b/x-pack/filebeat/module/snort/log/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/snort/log/config/liblogparser.js +++ b/x-pack/filebeat/module/snort/log/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js b/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js +++ b/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/sophos/utm/config/liblogparser.js b/x-pack/filebeat/module/sophos/utm/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/sophos/utm/config/liblogparser.js +++ b/x-pack/filebeat/module/sophos/utm/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/squid/log/config/liblogparser.js b/x-pack/filebeat/module/squid/log/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/squid/log/config/liblogparser.js +++ b/x-pack/filebeat/module/squid/log/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/threatintel/fields.go b/x-pack/filebeat/module/threatintel/fields.go index 84f4fed3ea60..fdee7dde59aa 100644 --- a/x-pack/filebeat/module/threatintel/fields.go +++ b/x-pack/filebeat/module/threatintel/fields.go @@ -19,5 +19,5 @@ func init() { // AssetThreatintel returns asset data. // This is the base64 encoded zlib format compressed contents of module/threatintel. func AssetThreatintel() string { - return "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" + return "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" } diff --git a/x-pack/filebeat/module/threatintel/misp/_meta/fields.yml b/x-pack/filebeat/module/threatintel/misp/_meta/fields.yml index c352ecce303b..8f88e1500452 100644 --- a/x-pack/filebeat/module/threatintel/misp/_meta/fields.yml +++ b/x-pack/filebeat/module/threatintel/misp/_meta/fields.yml @@ -163,3 +163,63 @@ type: keyword description: > The value of the attribute, depending on the type like "url, sha1, email-src". + - name: context.attribute.id + type: keyword + description: > + The ID of the secondary attribute related to the event object. + - name: context.attribute.type + type: keyword + description: > + The type of the secondary attribute related to the event object. For example email, ipv4, sha1 and such. + - name: context.attribute.category + type: keyword + description: > + The category of the secondary attribute related to the event object. For example "Network Activity". + - name: context.attribute.to_ids + type: boolean + description: > + If the secondary attribute should be automatically synced with an IDS. + - name: context.attribute.uuid + type: keyword + description: > + The UUID of the secondary attribute related to the event. + - name: context.attribute.event_id + type: keyword + description: > + The local event ID of the secondary attribute related to the event. + - name: context.attribute.distribution + type: long + description: > + How the secondary attribute has been distributed, represented by integer numbers. + - name: context.attribute.timestamp + type: date + description: > + The timestamp in which the secondary attribute was attached to the event object. + - name: context.attribute.comment + type: keyword + description: > + Comments made to the secondary attribute itself. + - name: context.attribute.sharing_group_id + type: keyword + description: > + The group ID of the sharing group related to the specific secondary attribute. + - name: context.attribute.deleted + type: boolean + description: > + If the secondary attribute has been removed from the event object. + - name: context.attribute.disable_correlation + type: boolean + description: > + If correlation has been enabled on the secondary attribute related to the event object. + - name: context.attribute.object_id + type: keyword + description: > + The ID of the Object in which the secondary attribute is attached. + - name: context.attribute.object_relation + type: keyword + description: > + The type of relation the secondary attribute has with the event object itself. + - name: context.attribute.value + type: keyword + description: > + The value of the attribute, depending on the type like "url, sha1, email-src". diff --git a/x-pack/filebeat/module/threatintel/misp/config/config.yml b/x-pack/filebeat/module/threatintel/misp/config/config.yml index 8efcd615f06e..922f794af204 100644 --- a/x-pack/filebeat/module/threatintel/misp/config/config.yml +++ b/x-pack/filebeat/module/threatintel/misp/config/config.yml @@ -33,12 +33,20 @@ response.split: target: body.response split: target: body.Event.Attribute + ignore_empty_value: true keep_parent: true + split: + target: body.Event.Object + keep_parent: true + split: + target: body.Event.Object.Attribute + keep_parent: true response.request_body_on_pagination: true response.pagination: - set: target: body.page value: '[[add .last_response.page 1]]' + fail_on_template_error: true cursor: timestamp: value: '[[.last_event.Event.timestamp]]' @@ -61,8 +69,14 @@ publisher_pipeline.disable_host: {{ inList .tags "forwarded" }} processors: - decode_json_fields: fields: [message] - document_id: Event.Attribute.uuid target: json + - fingerprint: + fields: + - json.Event.Attribute.uuid + - json.Event.Object.Attribute.uuid + ignore_missing: true + target_field: "@metadata._id" + encoding: base64 - script: lang: javascript id: my_filter diff --git a/x-pack/filebeat/module/threatintel/misp/ingest/pipeline.yml b/x-pack/filebeat/module/threatintel/misp/ingest/pipeline.yml index 8987e591b9b9..e64379422db6 100644 --- a/x-pack/filebeat/module/threatintel/misp/ingest/pipeline.yml +++ b/x-pack/filebeat/module/threatintel/misp/ingest/pipeline.yml @@ -41,10 +41,21 @@ processors: - threatintel.misp.Galaxy - threatintel.misp.Attribute.Galaxy - threatintel.misp.Attribute.ShadowAttribute - - threatintel.misp.Object - threatintel.misp.EventReport + - threatintel.misp.Object.Attribute.Galaxy + - threatintel.misp.Object.Attribute.ShadowAttribute - message ignore_missing: true + - remove: + field: + - threatintel.misp.Attribute + ignore_missing: true + if: ctx?.threatintel?.misp?.Attribute.size() == 0 + - remove: + field: + - threatintel.misp.Object + ignore_missing: true + if: ctx?.threatintel?.misp?.Object.size() == 0 - date: field: threatintel.misp.timestamp formats: @@ -54,6 +65,14 @@ processors: field: threatintel.misp.Attribute target_field: threatintel.misp.attribute ignore_missing: true + - rename: + field: threatintel.misp.Object + target_field: threatintel.misp.object + ignore_missing: true + - rename: + field: threatintel.misp.object.Attribute + target_field: threatintel.misp.object.attribute + ignore_missing: true - rename: field: threatintel.misp.Orgc target_field: threatintel.misp.orgc @@ -62,15 +81,25 @@ processors: field: threatintel.misp.Org target_field: threatintel.misp.org ignore_missing: true - - rename: - field: threatintel.misp.Attribute - target_field: threatintel.misp.attribute - ignore_missing: true - rename: field: threatintel.misp.Tag target_field: threatintel.misp.tag ignore_missing: true + # # Dance around issue of not being able to split the document into two. + # # Make the Object.Attribute field primary if it exists, but keep the + # # outer Attribute as context. + - rename: + field: threatintel.misp.attribute + target_field: threatintel.misp.context.attribute + ignore_missing: true + if: ctx?.threatintel?.misp?.object != null + - rename: + field: threatintel.misp.object.attribute + target_field: threatintel.misp.attribute + ignore_missing: true + if: ctx?.threatintel?.misp?.object != null + ##################### # Threat ECS Fields # ##################### @@ -96,7 +125,7 @@ processors: - set: field: threatintel.indicator.type value: file - if: "['md5', 'impfuzzy', 'imphash', 'pehash', 'sha1', 'sha224', 'sha256', 'sha3-224', 'sha3-256', 'sha3-384', 'sha3-512', 'sha384', 'sha512', 'sha512/224', 'sha512/256', 'ssdeep', 'tlsh', 'vhash'].contains(ctx.threatintel?.misp?.attribute?.type) || ctx.threatintel?.misp?.attribute?.type.startsWith('filename')" + if: "ctx?.threatintel?.misp?.attribute?.type != null && (['md5', 'impfuzzy', 'imphash', 'pehash', 'sha1', 'sha224', 'sha256', 'sha3-224', 'sha3-256', 'sha3-384', 'sha3-512', 'sha384', 'sha512', 'sha512/224', 'sha512/256', 'ssdeep', 'tlsh', 'vhash'].contains(ctx.threatintel?.misp?.attribute?.type) || ctx.threatintel?.misp?.attribute?.type.startsWith('filename'))" - rename: field: threatintel.misp.attribute.value target_field: "threatintel.indicator.file.hash.{{threatintel.misp.attribute.type}}" @@ -112,17 +141,17 @@ processors: patterns: - "%{WORD}\\|%{WORD:_tmp.hashtype}" ignore_missing: true - if: ctx?.threatintel?.misp?.attribute?.type.startsWith('filename|') + if: ctx?.threatintel?.misp?.attribute?.type != null && ctx?.threatintel?.misp?.attribute?.type.startsWith('filename|') - grok: field: threatintel.misp.attribute.value patterns: - "%{DATA:threatintel.indicator.file.name}\\|%{GREEDYDATA:_tmp.hashvalue}" ignore_missing: true - if: ctx?.threatintel?.misp?.attribute?.type.startsWith('filename|') + if: ctx?.threatintel?.misp?.attribute?.type != null && ctx?.threatintel?.misp?.attribute?.type.startsWith('filename|') - set: field: threatintel.indicator.file.hash.{{_tmp.hashtype}} value: "{{_tmp.hashvalue}}" - if: "ctx?.threatintel?.misp?.attribute?.type.startsWith('filename|') && ctx?._tmp?.hashvalue != null && ctx?._tmp?.hashtype != null" + if: "ctx?.threatintel?.misp?.attribute?.type != null && ctx?.threatintel?.misp?.attribute?.type.startsWith('filename|') && ctx?._tmp?.hashvalue != null && ctx?._tmp?.hashtype != null" ## URL/URI indicator operations - set: @@ -218,6 +247,14 @@ processors: target_field: threatintel.indicator.email.address ignore_missing: true if: ctx?.threatintel?.indicator?.type == 'email-addr' + - rename: + field: threatintel.misp.event_creator_email + target_field: user.email + ignore_missing: true + - append: + field: user.roles + value: "reporting_user" + if: ctx?.user?.email != null ## MAC Address indicator operations - set: @@ -288,6 +325,14 @@ processors: - threatintel.misp.attribute.value ignore_missing: true if: ctx?.threatintel?.indicator?.type != 'unknown' + - remove: + field: + # This removes a number of fields that may be wanted in the future when + # threatintel.misp.attribute and threatintel.misp.object.attribute can + # be separated. At the root of .object are fields that mirror fields at + # the root of threatintel.misp. + - threatintel.misp.object + ignore_missing: true - remove: field: - threatintel.misp.Attribute.timestamp diff --git a/x-pack/filebeat/module/threatintel/misp/test/misp_sample.ndjson.log-expected.json b/x-pack/filebeat/module/threatintel/misp/test/misp_sample.ndjson.log-expected.json index 0f51df945c7d..9f4dbc50fc83 100644 --- a/x-pack/filebeat/module/threatintel/misp/test/misp_sample.ndjson.log-expected.json +++ b/x-pack/filebeat/module/threatintel/misp/test/misp_sample.ndjson.log-expected.json @@ -36,6 +36,7 @@ "threatintel.misp.attribute.timestamp": "1503930272", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "md5", + "threatintel.misp.attribute.uuid": "59a427a0-f6f8-4178-9e7d-dfd702de0b81", "threatintel.misp.attribute_count": "7", "threatintel.misp.date": "2017-08-25", "threatintel.misp.disable_correlation": false, @@ -95,6 +96,7 @@ "threatintel.misp.attribute.timestamp": "1542652482", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "domain|ip", + "threatintel.misp.attribute.uuid": "5bf30242-8ef4-4c52-a2d7-0b7b0a016219", "threatintel.misp.attribute_count": "7", "threatintel.misp.date": "2017-08-25", "threatintel.misp.disable_correlation": false, @@ -154,6 +156,7 @@ "threatintel.misp.attribute.timestamp": "1490878550", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "link", + "threatintel.misp.attribute.uuid": "58dd0056-6e74-43d5-b58b-494802de0b81", "threatintel.misp.attribute_count": "100", "threatintel.misp.date": "2017-03-30", "threatintel.misp.disable_correlation": false, @@ -209,6 +212,7 @@ "threatintel.misp.attribute.timestamp": "1412579394", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "sha256", + "threatintel.misp.attribute.uuid": "54324042-49fc-4628-a95e-44da950d210b", "threatintel.misp.attribute_count": "29", "threatintel.misp.date": "2014-10-03", "threatintel.misp.disable_correlation": false, @@ -264,6 +268,7 @@ "threatintel.misp.attribute.timestamp": "1412579457", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "ip-dst", + "threatintel.misp.attribute.uuid": "54324081-3308-4f1f-8674-4953950d210b", "threatintel.misp.attribute_count": "29", "threatintel.misp.date": "2014-10-03", "threatintel.misp.disable_correlation": false, @@ -319,6 +324,7 @@ "threatintel.misp.attribute.timestamp": "1412579548", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "hostname", + "threatintel.misp.attribute.uuid": "543240dc-f068-437a-baa9-48f2950d210b", "threatintel.misp.attribute_count": "29", "threatintel.misp.date": "2014-10-03", "threatintel.misp.disable_correlation": false, @@ -373,6 +379,7 @@ "threatintel.misp.attribute.timestamp": "1412579577", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "543240f9-64e8-41f2-958f-4e21950d210b", "threatintel.misp.attribute.value": "Nitro", "threatintel.misp.attribute_count": "29", "threatintel.misp.date": "2014-10-03", @@ -429,6 +436,7 @@ "threatintel.misp.attribute.timestamp": "1455826343", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "sha1", + "threatintel.misp.attribute.uuid": "56c625a7-f31c-460c-9ea1-c652950d210f", "threatintel.misp.attribute_count": "29", "threatintel.misp.date": "2014-10-03", "threatintel.misp.disable_correlation": false, @@ -484,6 +492,7 @@ "threatintel.misp.attribute.timestamp": "1462454963", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "domain", + "threatintel.misp.attribute.uuid": "572b4ab3-1af0-4d91-9cd5-07a1c0a8ab16", "threatintel.misp.attribute_count": "29", "threatintel.misp.date": "2014-10-03", "threatintel.misp.disable_correlation": false, @@ -545,6 +554,7 @@ "threatintel.misp.attribute.timestamp": "1515427692", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "url", + "threatintel.misp.attribute.uuid": "5a53976c-e7c8-480d-a68a-2fc50a016219", "threatintel.misp.attribute_count": "61", "threatintel.misp.date": "2018-01-08", "threatintel.misp.disable_correlation": false, @@ -600,6 +610,7 @@ "threatintel.misp.attribute.timestamp": "1515429089", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "uri", + "threatintel.misp.attribute.uuid": "5a539ce1-3de0-4e34-8fc4-2fc50a016219", "threatintel.misp.attribute_count": "61", "threatintel.misp.date": "2018-01-08", "threatintel.misp.disable_correlation": false, @@ -657,6 +668,7 @@ "threatintel.misp.attribute.timestamp": "1515429089", "threatintel.misp.attribute.to_ids": false, "threatintel.misp.attribute.type": "filename|sha1", + "threatintel.misp.attribute.uuid": "5a539ce1-e6a0-426a-942c-2fc50a016219", "threatintel.misp.attribute_count": "61", "threatintel.misp.date": "2018-01-08", "threatintel.misp.disable_correlation": false, @@ -711,6 +723,7 @@ "threatintel.misp.attribute.timestamp": "1456266422", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "email-src", + "threatintel.misp.attribute.uuid": "56ccdcb6-4d6c-4e48-b955-52849062e56a", "threatintel.misp.attribute_count": "133", "threatintel.misp.date": "2015-12-08", "threatintel.misp.disable_correlation": false, @@ -765,6 +778,7 @@ "threatintel.misp.attribute.timestamp": "1456266454", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "regkey", + "threatintel.misp.attribute.uuid": "56ccdcd6-f4b8-4383-9624-52849062e56a", "threatintel.misp.attribute_count": "133", "threatintel.misp.date": "2015-12-08", "threatintel.misp.disable_correlation": false, @@ -821,6 +835,7 @@ "threatintel.misp.attribute.timestamp": "1607517728", "threatintel.misp.attribute.to_ids": true, "threatintel.misp.attribute.type": "ip-dst|port", + "threatintel.misp.attribute.uuid": "5fd0c620-a844-4ace-9710-a37bc0a8ab16", "threatintel.misp.attribute_count": "15", "threatintel.misp.date": "2020-12-09", "threatintel.misp.disable_correlation": false, diff --git a/x-pack/filebeat/module/threatintel/misp/test/misp_sample_with_ext_attributes.ndjson.log b/x-pack/filebeat/module/threatintel/misp/test/misp_sample_with_ext_attributes.ndjson.log new file mode 100644 index 000000000000..db8957404b46 --- /dev/null +++ b/x-pack/filebeat/module/threatintel/misp/test/misp_sample_with_ext_attributes.ndjson.log @@ -0,0 +1,26 @@ +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload installation","comment":"Contextual comment for the file md5 attribute","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3631","first_seen":null,"id":"266258","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621588162","to_ids":false,"type":"md5","uuid":"34c59b06-d35d-4808-919c-4b452f185c52","value":"70461da8b94c6ca5d2fda3260c5a8c3b"},"EventReport":[],"Galaxy":[],"Object":[],"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"analysis":"0","date":"2021-05-21","distribution":"1","id":"3633","info":"Test event 3 objects and attributes","org_id":"1","orgc_id":"1","published":false,"threat_level_id":"1","timestamp":"1621592532","uuid":"4edb20c7-8175-484d-bdcd-fce6872c1ef3"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"1","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3631","info":"Test event 1 just atrributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621588162","uuid":"8ca56ae9-3747-4172-93d2-808da1a4eaf3"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"Artefact dropped for test 2","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3632","first_seen":null,"id":"266259","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621588675","to_ids":true,"type":"md5","uuid":"73102a1c-7432-47b7-9644-6f9d46b6887c","value":"60461da8b94c6ca5d2fda3260c5a8c3b"},"EventReport":[],"Galaxy":[],"Object":[],"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"2","name":"CIRCL","uuid":"55f6ea5e-2c60-40e5-964f-47a8950d210f"},"analysis":"2","date":"2018-03-26","distribution":"3","id":"684","info":"OSINT - Forgot About Default Accounts? No Worries, GoScanSSH Didn’t","org_id":"1","orgc_id":"2","published":true,"threat_level_id":"3","timestamp":"1523865236","uuid":"5acdb4d0-b534-4713-9612-4a1d950d210f"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"4","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3632","info":"Test event 2 just more atrributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"2","timestamp":"1621588836","uuid":"efbca287-edb5-4ad7-b8e4-fe9da514a763"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Network activity","comment":"Conext for domain type attribute event 2","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3632","first_seen":null,"id":"266260","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621588744","to_ids":true,"type":"domain","uuid":"a52a1b47-a580-4f33-96ba-939cf9146c9b","value":"baddom.madeup.local"},"EventReport":[],"Galaxy":[],"Object":[],"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"2","name":"CIRCL","uuid":"55f6ea5e-2c60-40e5-964f-47a8950d210f"},"analysis":"2","date":"2018-03-26","distribution":"3","id":"684","info":"OSINT - Forgot About Default Accounts? No Worries, GoScanSSH Didn’t","org_id":"1","orgc_id":"2","published":true,"threat_level_id":"3","timestamp":"1523865236","uuid":"5acdb4d0-b534-4713-9612-4a1d950d210f"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"4","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3632","info":"Test event 2 just more atrributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"2","timestamp":"1621588836","uuid":"efbca287-edb5-4ad7-b8e4-fe9da514a763"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Network activity","comment":"Ip-src attribute context for event2","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3632","first_seen":null,"id":"266261","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621588800","to_ids":false,"type":"ip-src","uuid":"3dbf224b-7c84-4c4b-9f95-80f28954bd10","value":"10.0.0.1"},"EventReport":[],"Galaxy":[],"Object":[],"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"2","name":"CIRCL","uuid":"55f6ea5e-2c60-40e5-964f-47a8950d210f"},"analysis":"2","date":"2018-03-26","distribution":"3","id":"684","info":"OSINT - Forgot About Default Accounts? No Worries, GoScanSSH Didn’t","org_id":"1","orgc_id":"2","published":true,"threat_level_id":"3","timestamp":"1523865236","uuid":"5acdb4d0-b534-4713-9612-4a1d950d210f"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"4","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3632","info":"Test event 2 just more atrributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"2","timestamp":"1621588836","uuid":"efbca287-edb5-4ad7-b8e4-fe9da514a763"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Network activity","comment":"ip-dst context for event id 2","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3632","first_seen":null,"id":"266262","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621588836","to_ids":true,"type":"ip-dst","uuid":"db4bfd36-7374-4f8c-9031-60e56d4bba30","value":"192.168.1.50"},"EventReport":[],"Galaxy":[],"Object":[],"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"2","name":"CIRCL","uuid":"55f6ea5e-2c60-40e5-964f-47a8950d210f"},"analysis":"2","date":"2018-03-26","distribution":"3","id":"684","info":"OSINT - Forgot About Default Accounts? No Worries, GoScanSSH Didn’t","org_id":"1","orgc_id":"2","published":true,"threat_level_id":"3","timestamp":"1523865236","uuid":"5acdb4d0-b534-4713-9612-4a1d950d210f"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"4","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3632","info":"Test event 2 just more atrributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"2","timestamp":"1621588836","uuid":"efbca287-edb5-4ad7-b8e4-fe9da514a763"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"filename contect for test event 3","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266263","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621589229","to_ids":false,"type":"filename","uuid":"3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3","value":"thetestfile.txt"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266267","last_seen":null,"object_id":"18207","object_relation":"fullpath","sharing_group_id":"0","timestamp":"1621589548","to_ids":false,"type":"text","uuid":"ff97cc32-815e-4fc9-9d4b-cab9822027a6","value":"\\the\\fullpath\\to the file\\filenameofobject.txt"},"ObjectReference":[],"comment":"File object for event 3","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3633","first_seen":null,"id":"18207","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621589548","uuid":"42a88ad4-6834-46a9-a18b-aff9e078a4ea"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"analysis":"0","date":"2021-05-21","distribution":"1","id":"3631","info":"Test event 1 just atrributes","org_id":"1","orgc_id":"1","published":false,"threat_level_id":"1","timestamp":"1621588162","uuid":"8ca56ae9-3747-4172-93d2-808da1a4eaf3"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"6","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3633","info":"Test event 3 objects and attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592532","uuid":"4edb20c7-8175-484d-bdcd-fce6872c1ef3"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"filename contect for test event 3","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266263","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621589229","to_ids":false,"type":"filename","uuid":"3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3","value":"thetestfile.txt"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3633","first_seen":null,"id":"266268","last_seen":null,"object_id":"18207","object_relation":"size-in-bytes","sharing_group_id":"0","timestamp":"1621589548","to_ids":false,"type":"size-in-bytes","uuid":"e378b4d9-43e1-4c64-bd4e-70fce2b4e581","value":"505050"},"ObjectReference":[],"comment":"File object for event 3","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3633","first_seen":null,"id":"18207","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621589548","uuid":"42a88ad4-6834-46a9-a18b-aff9e078a4ea"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"analysis":"0","date":"2021-05-21","distribution":"1","id":"3631","info":"Test event 1 just atrributes","org_id":"1","orgc_id":"1","published":false,"threat_level_id":"1","timestamp":"1621588162","uuid":"8ca56ae9-3747-4172-93d2-808da1a4eaf3"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"6","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3633","info":"Test event 3 objects and attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592532","uuid":"4edb20c7-8175-484d-bdcd-fce6872c1ef3"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"filename contect for test event 3","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266263","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621589229","to_ids":false,"type":"filename","uuid":"3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3","value":"thetestfile.txt"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266264","last_seen":null,"object_id":"18207","object_relation":"md5","sharing_group_id":"0","timestamp":"1621589548","to_ids":true,"type":"md5","uuid":"787b3822-0bec-4278-b34a-5d649e7bce05","value":"70461da8b94c6ca5d2fda3260c5a8c3b"},"ObjectReference":[],"comment":"File object for event 3","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3633","first_seen":null,"id":"18207","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621589548","uuid":"42a88ad4-6834-46a9-a18b-aff9e078a4ea"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"analysis":"0","date":"2021-05-21","distribution":"1","id":"3631","info":"Test event 1 just atrributes","org_id":"1","orgc_id":"1","published":false,"threat_level_id":"1","timestamp":"1621588162","uuid":"8ca56ae9-3747-4172-93d2-808da1a4eaf3"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"6","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3633","info":"Test event 3 objects and attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592532","uuid":"4edb20c7-8175-484d-bdcd-fce6872c1ef3"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"filename contect for test event 3","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266263","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621589229","to_ids":false,"type":"filename","uuid":"3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3","value":"thetestfile.txt"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266265","last_seen":null,"object_id":"18207","object_relation":"sha256","sharing_group_id":"0","timestamp":"1621589548","to_ids":true,"type":"sha256","uuid":"657c5f2b-9d68-4ff7-a9ad-ab9e6a6c953e","value":"f33c27745f2bd87344be790465ef984a972fd539dc83bd4f61d4242c607ef1ee"},"ObjectReference":[],"comment":"File object for event 3","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3633","first_seen":null,"id":"18207","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621589548","uuid":"42a88ad4-6834-46a9-a18b-aff9e078a4ea"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"analysis":"0","date":"2021-05-21","distribution":"1","id":"3631","info":"Test event 1 just atrributes","org_id":"1","orgc_id":"1","published":false,"threat_level_id":"1","timestamp":"1621588162","uuid":"8ca56ae9-3747-4172-93d2-808da1a4eaf3"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"6","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3633","info":"Test event 3 objects and attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592532","uuid":"4edb20c7-8175-484d-bdcd-fce6872c1ef3"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"filename contect for test event 3","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3633","first_seen":null,"id":"266263","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1621589229","to_ids":false,"type":"filename","uuid":"3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3","value":"thetestfile.txt"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3633","first_seen":null,"id":"266266","last_seen":null,"object_id":"18207","object_relation":"filename","sharing_group_id":"0","timestamp":"1621589548","to_ids":true,"type":"filename","uuid":"6648d129-9200-431b-9b41-263a84f7c9d2","value":"filenameofobject.txt"},"ObjectReference":[],"comment":"File object for event 3","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3633","first_seen":null,"id":"18207","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621589548","uuid":"42a88ad4-6834-46a9-a18b-aff9e078a4ea"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[{"Event":{"Org":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"analysis":"0","date":"2021-05-21","distribution":"1","id":"3631","info":"Test event 1 just atrributes","org_id":"1","orgc_id":"1","published":false,"threat_level_id":"1","timestamp":"1621588162","uuid":"8ca56ae9-3747-4172-93d2-808da1a4eaf3"}}],"ShadowAttribute":[],"analysis":"0","attribute_count":"6","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3633","info":"Test event 3 objects and attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592532","uuid":"4edb20c7-8175-484d-bdcd-fce6872c1ef3"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3634","first_seen":null,"id":"266269","last_seen":null,"object_id":"18208","object_relation":"text","sharing_group_id":"0","timestamp":"1621591770","to_ids":false,"type":"text","uuid":"25d2f181-26ae-4d6f-b4fd-85b9d1f82e67","value":"Free text in the file object"},"ObjectReference":[],"comment":"File object for test event 4 ","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3634","first_seen":null,"id":"18208","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621591770","uuid":"190c762c-a389-4ecc-8f6e-68f92d42adef"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"3","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3634","info":"Test event 4 with object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"3","timestamp":"1621591770","uuid":"d98a8418-9f90-4b50-a623-6921ca5b356d"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3634","first_seen":null,"id":"266270","last_seen":null,"object_id":"18208","object_relation":"sha256","sharing_group_id":"0","timestamp":"1621591770","to_ids":true,"type":"sha256","uuid":"4e579782-346b-44b3-b72c-1cae8d87cb25","value":"567caa7653723f8818ec9eb6f2e27f6d9d8c0aca0c96fc457659340e7bbdc666"},"ObjectReference":[],"comment":"File object for test event 4 ","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3634","first_seen":null,"id":"18208","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621591770","uuid":"190c762c-a389-4ecc-8f6e-68f92d42adef"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"3","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3634","info":"Test event 4 with object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"3","timestamp":"1621591770","uuid":"d98a8418-9f90-4b50-a623-6921ca5b356d"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3634","first_seen":null,"id":"266271","last_seen":null,"object_id":"18208","object_relation":"filename","sharing_group_id":"0","timestamp":"1621591770","to_ids":true,"type":"filename","uuid":"a40343b5-a480-4288-9b0c-7ae074a77140","value":"filenameinmispobject.txt"},"ObjectReference":[],"comment":"File object for test event 4 ","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3634","first_seen":null,"id":"18208","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621591770","uuid":"190c762c-a389-4ecc-8f6e-68f92d42adef"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"3","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3634","info":"Test event 4 with object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"3","timestamp":"1621591770","uuid":"d98a8418-9f90-4b50-a623-6921ca5b356d"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3635","first_seen":null,"id":"266272","last_seen":null,"object_id":"18209","object_relation":"text","sharing_group_id":"0","timestamp":"1621592379","to_ids":false,"type":"text","uuid":"188a6a15-5704-4e4f-acba-22c55ab08fe8","value":"Object 5 free text attribute in object"},"ObjectReference":[],"comment":"event 5 object comment","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3635","first_seen":null,"id":"18209","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621592379","uuid":"a62cb6fb-fa1c-45ce-abb8-b46da23631d5"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"5","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3635","info":"Test event 5 with an object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592379","uuid":"8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3635","first_seen":null,"id":"266275","last_seen":null,"object_id":"18209","object_relation":"entropy","sharing_group_id":"0","timestamp":"1621592379","to_ids":false,"type":"float","uuid":"2400b103-4a33-4f92-ac04-a558b6c6e252","value":"0.53535445"},"ObjectReference":[],"comment":"event 5 object comment","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3635","first_seen":null,"id":"18209","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621592379","uuid":"a62cb6fb-fa1c-45ce-abb8-b46da23631d5"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"5","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3635","info":"Test event 5 with an object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592379","uuid":"8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3635","first_seen":null,"id":"266276","last_seen":null,"object_id":"18209","object_relation":"size-in-bytes","sharing_group_id":"0","timestamp":"1621592379","to_ids":false,"type":"size-in-bytes","uuid":"e5ea3ec0-cdf4-4d3e-bd66-a7bf384fd3d7","value":"55555"},"ObjectReference":[],"comment":"event 5 object comment","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3635","first_seen":null,"id":"18209","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621592379","uuid":"a62cb6fb-fa1c-45ce-abb8-b46da23631d5"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"5","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3635","info":"Test event 5 with an object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592379","uuid":"8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3635","first_seen":null,"id":"266273","last_seen":null,"object_id":"18209","object_relation":"sha256","sharing_group_id":"0","timestamp":"1621592379","to_ids":true,"type":"sha256","uuid":"803f10bd-9087-4169-8699-277579a92693","value":"567caa7653723f8818ec9eb6f2e27f6d9d8c0aca0c96fc457659340e7bbdc665"},"ObjectReference":[],"comment":"event 5 object comment","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3635","first_seen":null,"id":"18209","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621592379","uuid":"a62cb6fb-fa1c-45ce-abb8-b46da23631d5"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"5","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3635","info":"Test event 5 with an object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592379","uuid":"8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e"}} +{"Event":{"Attribute":[],"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3635","first_seen":null,"id":"266274","last_seen":null,"object_id":"18209","object_relation":"filename","sharing_group_id":"0","timestamp":"1621592379","to_ids":true,"type":"filename","uuid":"e5c7a9f0-c0e1-4024-9ab8-de8a1b403e4f","value":"object5.txt"},"ObjectReference":[],"comment":"event 5 object comment","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3635","first_seen":null,"id":"18209","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1621592379","uuid":"a62cb6fb-fa1c-45ce-abb8-b46da23631d5"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"5","date":"2021-05-21","disable_correlation":false,"distribution":"1","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3635","info":"Test event 5 with an object","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1621592379","uuid":"8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3636","first_seen":null,"id":"266278","last_seen":null,"object_id":"18210","object_relation":"text","sharing_group_id":"0","timestamp":"1622200348","to_ids":false,"type":"text","uuid":"955e34a5-a630-42c9-868d-6e3dcb575987","value":"Excutable create bad pipe"},"ObjectReference":[],"comment":"","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3636","first_seen":null,"id":"18210","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1622200348","uuid":"afe43d99-d8b6-47fa-8e7b-3d3ece2f8366"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3636","first_seen":null,"id":"266281","last_seen":null,"object_id":"18211","object_relation":"size-in-bytes","sharing_group_id":"0","timestamp":"1622200780","to_ids":false,"type":"size-in-bytes","uuid":"2fa7721b-ad73-4914-b082-8d44233ced98","value":"3892"},"ObjectReference":[],"comment":"","deleted":false,"description":"Object describing a section of a Portable Executable","distribution":"5","event_id":"3636","first_seen":null,"id":"18211","last_seen":null,"meta-category":"file","name":"pe-section","sharing_group_id":"0","template_uuid":"198a17d2-a135-4b25-9a32-5aa4e632014a","template_version":"3","timestamp":"1622200780","uuid":"023be568-34d6-4df4-ae88-f4de0dbfcd9d"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3636","first_seen":null,"id":"266283","last_seen":null,"object_id":"18211","object_relation":"name","sharing_group_id":"0","timestamp":"1622200780","to_ids":false,"type":"text","uuid":"d35c1ff8-a69c-482b-8fb0-1182988d9468","value":".data"},"ObjectReference":[],"comment":"","deleted":false,"description":"Object describing a section of a Portable Executable","distribution":"5","event_id":"3636","first_seen":null,"id":"18211","last_seen":null,"meta-category":"file","name":"pe-section","sharing_group_id":"0","template_uuid":"198a17d2-a135-4b25-9a32-5aa4e632014a","template_version":"3","timestamp":"1622200780","uuid":"023be568-34d6-4df4-ae88-f4de0dbfcd9d"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3636","first_seen":null,"id":"266284","last_seen":null,"object_id":"18211","object_relation":"text","sharing_group_id":"0","timestamp":"1622200780","to_ids":false,"type":"text","uuid":"dc11971a-a676-4676-b24c-a45a8791e0b0","value":"Extracted zip archive data"},"ObjectReference":[],"comment":"","deleted":false,"description":"Object describing a section of a Portable Executable","distribution":"5","event_id":"3636","first_seen":null,"id":"18211","last_seen":null,"meta-category":"file","name":"pe-section","sharing_group_id":"0","template_uuid":"198a17d2-a135-4b25-9a32-5aa4e632014a","template_version":"3","timestamp":"1622200780","uuid":"023be568-34d6-4df4-ae88-f4de0dbfcd9d"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Other","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3636","first_seen":null,"id":"266285","last_seen":null,"object_id":"18211","object_relation":"entropy","sharing_group_id":"0","timestamp":"1622200780","to_ids":false,"type":"float","uuid":"a85c0cbb-25a8-4bc9-b146-3cba1020e5bb","value":"7.93280431051"},"ObjectReference":[],"comment":"","deleted":false,"description":"Object describing a section of a Portable Executable","distribution":"5","event_id":"3636","first_seen":null,"id":"18211","last_seen":null,"meta-category":"file","name":"pe-section","sharing_group_id":"0","template_uuid":"198a17d2-a135-4b25-9a32-5aa4e632014a","template_version":"3","timestamp":"1622200780","uuid":"023be568-34d6-4df4-ae88-f4de0dbfcd9d"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266279","last_seen":null,"object_id":"18210","object_relation":"md5","sharing_group_id":"0","timestamp":"1622200348","to_ids":true,"type":"md5","uuid":"1c97c043-5de2-41a1-b591-3237174cd290","value":"7392463caf95534d56460bc9f360adc1"},"ObjectReference":[],"comment":"","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3636","first_seen":null,"id":"18210","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1622200348","uuid":"afe43d99-d8b6-47fa-8e7b-3d3ece2f8366"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266282","last_seen":null,"object_id":"18211","object_relation":"md5","sharing_group_id":"0","timestamp":"1622200780","to_ids":true,"type":"md5","uuid":"f3b8696e-5390-4383-ace2-6e06bfae497d","value":"7295463caf95534d56460bc9f360adc1"},"ObjectReference":[],"comment":"","deleted":false,"description":"Object describing a section of a Portable Executable","distribution":"5","event_id":"3636","first_seen":null,"id":"18211","last_seen":null,"meta-category":"file","name":"pe-section","sharing_group_id":"0","template_uuid":"198a17d2-a135-4b25-9a32-5aa4e632014a","template_version":"3","timestamp":"1622200780","uuid":"023be568-34d6-4df4-ae88-f4de0dbfcd9d"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} +{"Event":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Artifacts dropped","comment":"","deleted":false,"disable_correlation":false,"distribution":"5","event_id":"3636","first_seen":null,"id":"266277","last_seen":null,"object_id":"0","object_relation":null,"sharing_group_id":"0","timestamp":"1622200249","to_ids":false,"type":"windows-service-name","uuid":"3bd56a61-77f0-4885-8d1c-8bd2e39b65fb","value":"badmojopipe"},"EventReport":[],"Galaxy":[],"Object":{"Attribute":{"Galaxy":[],"ShadowAttribute":[],"category":"Payload delivery","comment":"","deleted":false,"disable_correlation":true,"distribution":"5","event_id":"3636","first_seen":null,"id":"266280","last_seen":null,"object_id":"18210","object_relation":"filename","sharing_group_id":"0","timestamp":"1622200348","to_ids":true,"type":"filename","uuid":"2dfcb937-e6af-4b5d-ad50-f8eb975990f3","value":"badmojopipe.exe"},"ObjectReference":[],"comment":"","deleted":false,"description":"File object describing a file with meta-information","distribution":"5","event_id":"3636","first_seen":null,"id":"18210","last_seen":null,"meta-category":"file","name":"file","sharing_group_id":"0","template_uuid":"688c46fb-5edb-40a3-8273-1af7923e2215","template_version":"22","timestamp":"1622200348","uuid":"afe43d99-d8b6-47fa-8e7b-3d3ece2f8366"},"Org":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"Orgc":{"id":"1","local":true,"name":"ORGNAME","uuid":"78acad2d-cc2d-4785-94d6-b428a0070488"},"RelatedEvent":[],"ShadowAttribute":[],"analysis":"0","attribute_count":"9","date":"2021-05-28","disable_correlation":false,"distribution":"0","event_creator_email":"admin@admin.test","extends_uuid":"","id":"3636","info":"Test event 6 with multiple objects and multiple attributes","locked":false,"org_id":"1","orgc_id":"1","proposal_email_lock":false,"publish_timestamp":"0","published":false,"sharing_group_id":"0","threat_level_id":"1","timestamp":"1622200781","uuid":"81aea1d1-bb23-4bcd-9b0c-496e9ce028df"}} diff --git a/x-pack/filebeat/module/threatintel/misp/test/misp_sample_with_ext_attributes.ndjson.log-expected.json b/x-pack/filebeat/module/threatintel/misp/test/misp_sample_with_ext_attributes.ndjson.log-expected.json new file mode 100644 index 000000000000..6db06ab777c0 --- /dev/null +++ b/x-pack/filebeat/module/threatintel/misp/test/misp_sample_with_ext_attributes.ndjson.log-expected.json @@ -0,0 +1,1687 @@ +[ + { + "@timestamp": "2021-05-21T09:09:22.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 0, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.md5": "70461da8b94c6ca5d2fda3260c5a8c3b", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload installation", + "threatintel.misp.attribute.comment": "Contextual comment for the file md5 attribute", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3631", + "threatintel.misp.attribute.id": "266258", + "threatintel.misp.attribute.object_id": "0", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621588162", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "md5", + "threatintel.misp.attribute.uuid": "34c59b06-d35d-4808-919c-4b452f185c52", + "threatintel.misp.attribute_count": "1", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3631", + "threatintel.misp.info": "Test event 1 just atrributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "8ca56ae9-3747-4172-93d2-808da1a4eaf3", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T09:20:36.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 1614, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.md5": "60461da8b94c6ca5d2fda3260c5a8c3b", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Artifacts dropped", + "threatintel.misp.attribute.comment": "Artefact dropped for test 2", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3632", + "threatintel.misp.attribute.id": "266259", + "threatintel.misp.attribute.object_id": "0", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621588675", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "md5", + "threatintel.misp.attribute.uuid": "73102a1c-7432-47b7-9644-6f9d46b6887c", + "threatintel.misp.attribute_count": "4", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3632", + "threatintel.misp.info": "Test event 2 just more atrributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 2, + "threatintel.misp.uuid": "efbca287-edb5-4ad7-b8e4-fe9da514a763", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T09:20:36.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 3241, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "domain-name", + "threatintel.indicator.url.domain": "baddom.madeup.local", + "threatintel.misp.attribute.category": "Network activity", + "threatintel.misp.attribute.comment": "Conext for domain type attribute event 2", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3632", + "threatintel.misp.attribute.id": "266260", + "threatintel.misp.attribute.object_id": "0", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621588744", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "domain", + "threatintel.misp.attribute.uuid": "a52a1b47-a580-4f33-96ba-939cf9146c9b", + "threatintel.misp.attribute_count": "4", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3632", + "threatintel.misp.info": "Test event 2 just more atrributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 2, + "threatintel.misp.uuid": "efbca287-edb5-4ad7-b8e4-fe9da514a763", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T09:20:36.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 4870, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.ip": "10.0.0.1", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "ipv4-addr", + "threatintel.misp.attribute.category": "Network activity", + "threatintel.misp.attribute.comment": "Ip-src attribute context for event2", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3632", + "threatintel.misp.attribute.id": "266261", + "threatintel.misp.attribute.object_id": "0", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621588800", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "ip-src", + "threatintel.misp.attribute.uuid": "3dbf224b-7c84-4c4b-9f95-80f28954bd10", + "threatintel.misp.attribute_count": "4", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3632", + "threatintel.misp.info": "Test event 2 just more atrributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 2, + "threatintel.misp.uuid": "efbca287-edb5-4ad7-b8e4-fe9da514a763", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T09:20:36.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 6484, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.ip": "192.168.1.50", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "ipv4-addr", + "threatintel.misp.attribute.category": "Network activity", + "threatintel.misp.attribute.comment": "ip-dst context for event id 2", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3632", + "threatintel.misp.attribute.id": "266262", + "threatintel.misp.attribute.object_id": "0", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621588836", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "ip-dst", + "threatintel.misp.attribute.uuid": "db4bfd36-7374-4f8c-9031-60e56d4bba30", + "threatintel.misp.attribute_count": "4", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3632", + "threatintel.misp.info": "Test event 2 just more atrributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 2, + "threatintel.misp.uuid": "efbca287-edb5-4ad7-b8e4-fe9da514a763", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:22:12.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 8095, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3633", + "threatintel.misp.attribute.id": "266267", + "threatintel.misp.attribute.object_id": "18207", + "threatintel.misp.attribute.object_relation": "fullpath", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621589548", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "ff97cc32-815e-4fc9-9d4b-cab9822027a6", + "threatintel.misp.attribute.value": "\\the\\fullpath\\to the file\\filenameofobject.txt", + "threatintel.misp.attribute_count": "6", + "threatintel.misp.context.attribute.category": "Payload delivery", + "threatintel.misp.context.attribute.comment": "filename contect for test event 3", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3633", + "threatintel.misp.context.attribute.id": "266263", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1621589229", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "filename", + "threatintel.misp.context.attribute.uuid": "3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3", + "threatintel.misp.context.attribute.value": "thetestfile.txt", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3633", + "threatintel.misp.info": "Test event 3 objects and attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "4edb20c7-8175-484d-bdcd-fce6872c1ef3", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:22:12.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 10558, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3633", + "threatintel.misp.attribute.id": "266268", + "threatintel.misp.attribute.object_id": "18207", + "threatintel.misp.attribute.object_relation": "size-in-bytes", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621589548", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "size-in-bytes", + "threatintel.misp.attribute.uuid": "e378b4d9-43e1-4c64-bd4e-70fce2b4e581", + "threatintel.misp.attribute.value": "505050", + "threatintel.misp.attribute_count": "6", + "threatintel.misp.context.attribute.category": "Payload delivery", + "threatintel.misp.context.attribute.comment": "filename contect for test event 3", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3633", + "threatintel.misp.context.attribute.id": "266263", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1621589229", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "filename", + "threatintel.misp.context.attribute.uuid": "3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3", + "threatintel.misp.context.attribute.value": "thetestfile.txt", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3633", + "threatintel.misp.info": "Test event 3 objects and attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "4edb20c7-8175-484d-bdcd-fce6872c1ef3", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:22:12.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 12990, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.md5": "70461da8b94c6ca5d2fda3260c5a8c3b", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3633", + "threatintel.misp.attribute.id": "266264", + "threatintel.misp.attribute.object_id": "18207", + "threatintel.misp.attribute.object_relation": "md5", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621589548", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "md5", + "threatintel.misp.attribute.uuid": "787b3822-0bec-4278-b34a-5d649e7bce05", + "threatintel.misp.attribute_count": "6", + "threatintel.misp.context.attribute.category": "Payload delivery", + "threatintel.misp.context.attribute.comment": "filename contect for test event 3", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3633", + "threatintel.misp.context.attribute.id": "266263", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1621589229", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "filename", + "threatintel.misp.context.attribute.uuid": "3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3", + "threatintel.misp.context.attribute.value": "thetestfile.txt", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3633", + "threatintel.misp.info": "Test event 3 objects and attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "4edb20c7-8175-484d-bdcd-fce6872c1ef3", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:22:12.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 15439, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.sha256": "f33c27745f2bd87344be790465ef984a972fd539dc83bd4f61d4242c607ef1ee", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3633", + "threatintel.misp.attribute.id": "266265", + "threatintel.misp.attribute.object_id": "18207", + "threatintel.misp.attribute.object_relation": "sha256", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621589548", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "sha256", + "threatintel.misp.attribute.uuid": "657c5f2b-9d68-4ff7-a9ad-ab9e6a6c953e", + "threatintel.misp.attribute_count": "6", + "threatintel.misp.context.attribute.category": "Payload delivery", + "threatintel.misp.context.attribute.comment": "filename contect for test event 3", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3633", + "threatintel.misp.context.attribute.id": "266263", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1621589229", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "filename", + "threatintel.misp.context.attribute.uuid": "3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3", + "threatintel.misp.context.attribute.value": "thetestfile.txt", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3633", + "threatintel.misp.info": "Test event 3 objects and attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "4edb20c7-8175-484d-bdcd-fce6872c1ef3", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:22:12.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 17926, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.name": "filenameofobject.txt", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3633", + "threatintel.misp.attribute.id": "266266", + "threatintel.misp.attribute.object_id": "18207", + "threatintel.misp.attribute.object_relation": "filename", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621589548", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "filename", + "threatintel.misp.attribute.uuid": "6648d129-9200-431b-9b41-263a84f7c9d2", + "threatintel.misp.attribute_count": "6", + "threatintel.misp.context.attribute.category": "Payload delivery", + "threatintel.misp.context.attribute.comment": "filename contect for test event 3", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3633", + "threatintel.misp.context.attribute.id": "266263", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1621589229", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "filename", + "threatintel.misp.context.attribute.uuid": "3b322e1a-1dd8-490c-ab96-12e1bc3ee6a3", + "threatintel.misp.context.attribute.value": "thetestfile.txt", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3633", + "threatintel.misp.info": "Test event 3 objects and attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "4edb20c7-8175-484d-bdcd-fce6872c1ef3", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:09:30.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 20372, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3634", + "threatintel.misp.attribute.id": "266269", + "threatintel.misp.attribute.object_id": "18208", + "threatintel.misp.attribute.object_relation": "text", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621591770", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "25d2f181-26ae-4d6f-b4fd-85b9d1f82e67", + "threatintel.misp.attribute.value": "Free text in the file object", + "threatintel.misp.attribute_count": "3", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3634", + "threatintel.misp.info": "Test event 4 with object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 3, + "threatintel.misp.uuid": "d98a8418-9f90-4b50-a623-6921ca5b356d", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:09:30.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 21959, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.sha256": "567caa7653723f8818ec9eb6f2e27f6d9d8c0aca0c96fc457659340e7bbdc666", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3634", + "threatintel.misp.attribute.id": "266270", + "threatintel.misp.attribute.object_id": "18208", + "threatintel.misp.attribute.object_relation": "sha256", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621591770", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "sha256", + "threatintel.misp.attribute.uuid": "4e579782-346b-44b3-b72c-1cae8d87cb25", + "threatintel.misp.attribute_count": "3", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3634", + "threatintel.misp.info": "Test event 4 with object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 3, + "threatintel.misp.uuid": "d98a8418-9f90-4b50-a623-6921ca5b356d", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:09:30.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 23597, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.name": "filenameinmispobject.txt", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3634", + "threatintel.misp.attribute.id": "266271", + "threatintel.misp.attribute.object_id": "18208", + "threatintel.misp.attribute.object_relation": "filename", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621591770", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "filename", + "threatintel.misp.attribute.uuid": "a40343b5-a480-4288-9b0c-7ae074a77140", + "threatintel.misp.attribute_count": "3", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3634", + "threatintel.misp.info": "Test event 4 with object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 3, + "threatintel.misp.uuid": "d98a8418-9f90-4b50-a623-6921ca5b356d", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:19:39.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 25198, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3635", + "threatintel.misp.attribute.id": "266272", + "threatintel.misp.attribute.object_id": "18209", + "threatintel.misp.attribute.object_relation": "text", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621592379", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "188a6a15-5704-4e4f-acba-22c55ab08fe8", + "threatintel.misp.attribute.value": "Object 5 free text attribute in object", + "threatintel.misp.attribute_count": "5", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3635", + "threatintel.misp.info": "Test event 5 with an object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:19:39.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 26791, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3635", + "threatintel.misp.attribute.id": "266275", + "threatintel.misp.attribute.object_id": "18209", + "threatintel.misp.attribute.object_relation": "entropy", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621592379", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "float", + "threatintel.misp.attribute.uuid": "2400b103-4a33-4f92-ac04-a558b6c6e252", + "threatintel.misp.attribute.value": "0.53535445", + "threatintel.misp.attribute_count": "5", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3635", + "threatintel.misp.info": "Test event 5 with an object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:19:39.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 28360, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3635", + "threatintel.misp.attribute.id": "266276", + "threatintel.misp.attribute.object_id": "18209", + "threatintel.misp.attribute.object_relation": "size-in-bytes", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621592379", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "size-in-bytes", + "threatintel.misp.attribute.uuid": "e5ea3ec0-cdf4-4d3e-bd66-a7bf384fd3d7", + "threatintel.misp.attribute.value": "55555", + "threatintel.misp.attribute_count": "5", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3635", + "threatintel.misp.info": "Test event 5 with an object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:19:39.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 29938, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.sha256": "567caa7653723f8818ec9eb6f2e27f6d9d8c0aca0c96fc457659340e7bbdc665", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3635", + "threatintel.misp.attribute.id": "266273", + "threatintel.misp.attribute.object_id": "18209", + "threatintel.misp.attribute.object_relation": "sha256", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621592379", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "sha256", + "threatintel.misp.attribute.uuid": "803f10bd-9087-4169-8699-277579a92693", + "threatintel.misp.attribute_count": "5", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3635", + "threatintel.misp.info": "Test event 5 with an object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-21T10:19:39.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 31572, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.name": "object5.txt", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3635", + "threatintel.misp.attribute.id": "266274", + "threatintel.misp.attribute.object_id": "18209", + "threatintel.misp.attribute.object_relation": "filename", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1621592379", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "filename", + "threatintel.misp.attribute.uuid": "e5c7a9f0-c0e1-4024-9ab8-de8a1b403e4f", + "threatintel.misp.attribute_count": "5", + "threatintel.misp.date": "2021-05-21", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "1", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3635", + "threatintel.misp.info": "Test event 5 with an object", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "8b8786f1-07f2-4bfc-a3f0-e63c22fcc25e", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 33156, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266278", + "threatintel.misp.attribute.object_id": "18210", + "threatintel.misp.attribute.object_relation": "text", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200348", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "955e34a5-a630-42c9-868d-6e3dcb575987", + "threatintel.misp.attribute.value": "Excutable create bad pipe", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 35151, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266281", + "threatintel.misp.attribute.object_id": "18211", + "threatintel.misp.attribute.object_relation": "size-in-bytes", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200780", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "size-in-bytes", + "threatintel.misp.attribute.uuid": "2fa7721b-ad73-4914-b082-8d44233ced98", + "threatintel.misp.attribute.value": "3892", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 37149, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266283", + "threatintel.misp.attribute.object_id": "18211", + "threatintel.misp.attribute.object_relation": "name", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200780", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "d35c1ff8-a69c-482b-8fb0-1182988d9468", + "threatintel.misp.attribute.value": ".data", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 39130, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266284", + "threatintel.misp.attribute.object_id": "18211", + "threatintel.misp.attribute.object_relation": "text", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200780", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "text", + "threatintel.misp.attribute.uuid": "dc11971a-a676-4676-b24c-a45a8791e0b0", + "threatintel.misp.attribute.value": "Extracted zip archive data", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 41132, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "unknown", + "threatintel.misp.attribute.category": "Other", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266285", + "threatintel.misp.attribute.object_id": "18211", + "threatintel.misp.attribute.object_relation": "entropy", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200780", + "threatintel.misp.attribute.to_ids": false, + "threatintel.misp.attribute.type": "float", + "threatintel.misp.attribute.uuid": "a85c0cbb-25a8-4bc9-b146-3cba1020e5bb", + "threatintel.misp.attribute.value": "7.93280431051", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 43125, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.md5": "7392463caf95534d56460bc9f360adc1", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266279", + "threatintel.misp.attribute.object_id": "18210", + "threatintel.misp.attribute.object_relation": "md5", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200348", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "md5", + "threatintel.misp.attribute.uuid": "1c97c043-5de2-41a1-b591-3237174cd290", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 45136, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.hash.md5": "7295463caf95534d56460bc9f360adc1", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": false, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266282", + "threatintel.misp.attribute.object_id": "18211", + "threatintel.misp.attribute.object_relation": "md5", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200780", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "md5", + "threatintel.misp.attribute.uuid": "f3b8696e-5390-4383-ace2-6e06bfae497d", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + }, + { + "@timestamp": "2021-05-28T11:19:41.000Z", + "event.category": "threat", + "event.dataset": "threatintel.misp", + "event.kind": "enrichment", + "event.module": "threatintel", + "event.type": "indicator", + "fileset.name": "misp", + "input.type": "log", + "log.offset": 47153, + "service.type": "threatintel", + "tags": [ + "forwarded", + "threatintel-misp" + ], + "threatintel.indicator.file.name": "badmojopipe.exe", + "threatintel.indicator.provider": "misp", + "threatintel.indicator.scanner_stats": 0, + "threatintel.indicator.type": "file", + "threatintel.misp.attribute.category": "Payload delivery", + "threatintel.misp.attribute.comment": "", + "threatintel.misp.attribute.deleted": false, + "threatintel.misp.attribute.disable_correlation": true, + "threatintel.misp.attribute.distribution": "5", + "threatintel.misp.attribute.event_id": "3636", + "threatintel.misp.attribute.id": "266280", + "threatintel.misp.attribute.object_id": "18210", + "threatintel.misp.attribute.object_relation": "filename", + "threatintel.misp.attribute.sharing_group_id": "0", + "threatintel.misp.attribute.timestamp": "1622200348", + "threatintel.misp.attribute.to_ids": true, + "threatintel.misp.attribute.type": "filename", + "threatintel.misp.attribute.uuid": "2dfcb937-e6af-4b5d-ad50-f8eb975990f3", + "threatintel.misp.attribute_count": "9", + "threatintel.misp.context.attribute.category": "Artifacts dropped", + "threatintel.misp.context.attribute.comment": "", + "threatintel.misp.context.attribute.deleted": false, + "threatintel.misp.context.attribute.disable_correlation": false, + "threatintel.misp.context.attribute.distribution": "5", + "threatintel.misp.context.attribute.event_id": "3636", + "threatintel.misp.context.attribute.id": "266277", + "threatintel.misp.context.attribute.object_id": "0", + "threatintel.misp.context.attribute.sharing_group_id": "0", + "threatintel.misp.context.attribute.timestamp": "1622200249", + "threatintel.misp.context.attribute.to_ids": false, + "threatintel.misp.context.attribute.type": "windows-service-name", + "threatintel.misp.context.attribute.uuid": "3bd56a61-77f0-4885-8d1c-8bd2e39b65fb", + "threatintel.misp.context.attribute.value": "badmojopipe", + "threatintel.misp.date": "2021-05-28", + "threatintel.misp.disable_correlation": false, + "threatintel.misp.distribution": "0", + "threatintel.misp.extends_uuid": "", + "threatintel.misp.id": "3636", + "threatintel.misp.info": "Test event 6 with multiple objects and multiple attributes", + "threatintel.misp.locked": false, + "threatintel.misp.org_id": "1", + "threatintel.misp.orgc.id": "1", + "threatintel.misp.orgc.local": true, + "threatintel.misp.orgc.name": "ORGNAME", + "threatintel.misp.orgc.uuid": "78acad2d-cc2d-4785-94d6-b428a0070488", + "threatintel.misp.orgc_id": "1", + "threatintel.misp.proposal_email_lock": false, + "threatintel.misp.publish_timestamp": "0", + "threatintel.misp.published": false, + "threatintel.misp.sharing_group_id": "0", + "threatintel.misp.threat_level_id": 1, + "threatintel.misp.uuid": "81aea1d1-bb23-4bcd-9b0c-496e9ce028df", + "user.email": "admin@admin.test", + "user.roles": [ + "reporting_user" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/tomcat/log/config/liblogparser.js b/x-pack/filebeat/module/tomcat/log/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/tomcat/log/config/liblogparser.js +++ b/x-pack/filebeat/module/tomcat/log/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js b/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js index cec99a043e86..9475ee9a8ec5 100644 --- a/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js +++ b/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/functionbeat/Dockerfile b/x-pack/functionbeat/Dockerfile index 6f30f22e0c17..32a50093bae6 100644 --- a/x-pack/functionbeat/Dockerfile +++ b/x-pack/functionbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/x-pack/functionbeat/Jenkinsfile.yml b/x-pack/functionbeat/Jenkinsfile.yml index 325dca6daf3e..ed7b9aa407c0 100644 --- a/x-pack/functionbeat/Jenkinsfile.yml +++ b/x-pack/functionbeat/Jenkinsfile.yml @@ -31,7 +31,7 @@ stages: parameters: - "armTest" unitTest: - mage: "mage build unitTest && GO_VERSION=1.13.1 mage testGCPFunctions" + mage: "mage build unitTest" stage: mandatory goIntegTest: mage: "mage goIntegTest" diff --git a/x-pack/functionbeat/Makefile b/x-pack/functionbeat/Makefile index 60d069da395a..be4e2ceaeb31 100644 --- a/x-pack/functionbeat/Makefile +++ b/x-pack/functionbeat/Makefile @@ -8,7 +8,3 @@ ES_BEATS?=../../ # Includes # include $(ES_BEATS)/dev-tools/make/mage.mk - -.PHONY: test-gcp-functions -test-gcp-functions: mage - mage testGCPFunctions diff --git a/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl b/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl index 64d00a2fc1cb..c5b5b0524faf 100644 --- a/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl +++ b/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl @@ -295,111 +295,3 @@ functionbeat.provider.aws.functions: # Set to true to publish fields with null values in events. #keep_null: false - -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" diff --git a/x-pack/functionbeat/_meta/config/beat.yml.tmpl b/x-pack/functionbeat/_meta/config/beat.yml.tmpl index 00caf63d94ce..48c0e6ae40b3 100644 --- a/x-pack/functionbeat/_meta/config/beat.yml.tmpl +++ b/x-pack/functionbeat/_meta/config/beat.yml.tmpl @@ -251,104 +251,3 @@ functionbeat.provider.aws.functions: # Default is 1. #parallelization_factor: 1 -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" -#==================== Elasticsearch template setting ========================== - -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false diff --git a/x-pack/functionbeat/dev-tools/packaging/packages.yml b/x-pack/functionbeat/dev-tools/packaging/packages.yml index e6c3346bf1ab..480b31820b5f 100644 --- a/x-pack/functionbeat/dev-tools/packaging/packages.yml +++ b/x-pack/functionbeat/dev-tools/packaging/packages.yml @@ -65,18 +65,6 @@ shared: pkg/functionbeat-aws: source: 'provider/aws/build/golang-crossbuild/aws-linux-amd64' mode: 0755 - pkg/pubsub/vendor: - source: 'provider/gcp/build/pubsub/vendor' - mode: 0644 - pkg/storage/vendor: - source: 'provider/gcp/build/storage/vendor' - mode: 0644 - pkg/pubsub/pubsub.go: - source: 'provider/gcp/pubsub/pubsub.go' - mode: 0655 - pkg/storage/storage.go: - source: 'provider/gcp/storage/storage.go' - mode: 0655 # specs is a list of named packaging "flavors". specs: diff --git a/x-pack/functionbeat/docs/config-options-gcp.asciidoc b/x-pack/functionbeat/docs/config-options-gcp.asciidoc deleted file mode 100644 index 6ee6a1f21df7..000000000000 --- a/x-pack/functionbeat/docs/config-options-gcp.asciidoc +++ /dev/null @@ -1,198 +0,0 @@ -[id="configuration-{beatname_lc}-gcp-options"] -[role="xpack"] -== Configure Google Functions - -++++ -Google functions -++++ - -beta[] - -{beatname_uc} runs as a Google Function on Google Cloud Platform (GCP). - -Before deploying {beatname_uc}, you need to configure one or more functions and -specify details about the services that will trigger the functions. - -You configure the functions in the the +{beatname_lc}.yml+ configuration file. -When you're done, you can <> -to your serverless environment. - -The following example configures two functions: `pubsub` and `storage`. The -`pubsub` function collects log events from https://cloud.google.com/pubsub/[Google -Pub/Sub]. The `storage` function collects log events from -https://cloud.google.com/storage/[Google Cloud Storage]. Both functions in the -example forward the events to {es}. - -["source","sh",subs="attributes"] ----- -functionbeat.provider.gcp.location_id: "europe-west2" -functionbeat.provider.gcp.project_id: "my-project-123456" -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" -functionbeat.provider.gcp.functions: - - name: pubsub - enabled: true - type: pubsub - description: "Google Cloud Function for Pub/Sub" - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - name: storage - enabled: true - type: storage - description: "Google Cloud Function for Cloud Storage" - trigger: - resource: "projects/my-project/buckets/my-storage" - event_type: "google.storage.object.finalize" - -cloud.id: "MyESDeployment:SomeLongString==" -cloud.auth: "elastic:mypassword" ----- - -[id="{beatname_lc}-gcp-options"] -[float] -=== Configuration options -Specify the following options to configure the functions -that you want to deploy to Google Cloud Platform (GCP). - -TIP: If you change the configuration after deploying the function, use -the <> to update your deployment. - -[float] -[id="{beatname_lc}-gcp-location_id"] -==== `provider.gcp.location_id` - -The region where your GCP project is located. - -[float] -[id="{beatname_lc}-gcp-project_id"] -==== `provider.gcp.project_id` - -The ID of the GCP project where the function artifacts will be deployed. See the -https://cloud.google.com/about/locations/[Google Cloud Function documentation] -to verify that Cloud Functions are supported in the region you specify. - -[float] -[id="{beatname_lc}-gcp-storage_name"] -==== `provider.gcp.storage_name` - -The name of the Google Cloud storage bucket where the function artifacts will be -deployed. If the bucket doesn't exist, it will be created, if you have the -correct project permissions (`storage.objects.create`). - -[float] -[id="{beatname_lc}-gcp-functions"] -==== `functionbeat.provider.gcp.functions` -A list of functions that are available for deployment. - -[float] -[id="{beatname_lc}-gcp-name"] -===== `name` - -A unique name for the Google function. - -[float] -[id="{beatname_lc}-gcp--type"] -===== `type` - -The type of GCP service to monitor. For this release, the supported types -are: - -[horizontal] -`pubsub`:: Collect log events from Google Pub/Sub. -`storage`:: Collect log events from Google Cloud storage buckets. - -[float] -[id="{beatname_lc}-gcp-description"] -===== `description` - -A description of the function. This description is useful when you are running -multiple functions and need more context about how each function is used. - -[float] -[id="{beatname_lc}-gcp-memory-size"] -==== `memory_size` - -The maximum amount of memory to allocate for this function. -The default is `256MB`. - -[float] -[id="{beatname_lc}-gcp-timeout"] -==== `timeout` - -The execution timeout in seconds. If the function does not finish in time, -it is considered failed and terminated. The default is `60s`. Increase this -value if you see timeout messages is the Google Stackdriver logs. - -[float] -[id="{beatname_lc}-gcp-service_account_email"] -==== `service_account_email` - -The email of the service account that the function will assume as its identity. -The default is {projectid}@appspot.gserviceaccount.com.email. - -[float] -[id="{beatname_lc}-gcp-labels"] -==== `labels` - -One or more labels to apply to the function. A label is a key-value pair that -helps you organize your Google Cloud resources. - -[float] -[id="{beatname_lc}-gcp-vpc_connector"] -==== `vpc_connector` - -A VPC connector that the function can connect to when sending requests to -resources in your VPC network. - -Use the format `projects/*/locations/*/connectors/*` or a fully qualified -URI. - -[float] -[id="{beatname_lc}-gcp-maximum_instances"] -==== `maximum_instances` - -The maximum instances that can be running at the same time. The default is -unlimited. - -[float] -[id="{beatname_lc}-gcp-triggers"] -===== `trigger` - -The trigger that will cause the function to execute. - -* If `type` is `pubsub`, specify the name of the Pub/Sub topic to watch for -messages. - -* If `type` is `storage`, specify the Cloud Storage bucket to watch for object -events. For `event_type`, specify the type of object event that will trigger the -function. See the https://cloud.google.com/functions/docs/calling/storage[Google Cloud -docs] for a list of available event types. - -[float] -[id="{beatname_lc}-gcp-keep_null"] -==== `keep_null` - -If `true`, fields with null values will be published in the output document. By -default, `keep_null` is `false`. - -[float] -[id="{beatname_lc}-gcp-fields"] -==== `fields` - -Optional fields that you can specify to add additional information to the -output. Fields can be scalar values, arrays, dictionaries, or any nested -combination of these. - -[float] -[id="{beatname_lc}-gcp-processors"] -==== `processors` - -Define custom processors for this function. For example, you can specify a -dissect processor to tokenize a string: - -[source,yaml] ----- -processors: - - dissect: - tokenizer: "%{key1} %{key2}" ----- diff --git a/x-pack/functionbeat/docs/configuring-howto.asciidoc b/x-pack/functionbeat/docs/configuring-howto.asciidoc index 3d72f9b5a55c..fad0629261be 100644 --- a/x-pack/functionbeat/docs/configuring-howto.asciidoc +++ b/x-pack/functionbeat/docs/configuring-howto.asciidoc @@ -11,7 +11,6 @@ include::{libbeat-dir}/shared/configuring-intro.asciidoc[] * <> -* <> * <> * <> * <> @@ -28,8 +27,6 @@ include::{libbeat-dir}/shared/configuring-intro.asciidoc[] include::./config-options-aws.asciidoc[] -include::./config-options-gcp.asciidoc[] - include::./general-options.asciidoc[] [role="xpack"] diff --git a/x-pack/functionbeat/docs/fields.asciidoc b/x-pack/functionbeat/docs/fields.asciidoc index b6dab3f6bb35..94b6eaf44a7a 100644 --- a/x-pack/functionbeat/docs/fields.asciidoc +++ b/x-pack/functionbeat/docs/fields.asciidoc @@ -14556,16 +14556,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/x-pack/functionbeat/docs/getting-started.asciidoc b/x-pack/functionbeat/docs/getting-started.asciidoc index 2ba0caf85ed3..ff5700cf71d5 100644 --- a/x-pack/functionbeat/docs/getting-started.asciidoc +++ b/x-pack/functionbeat/docs/getting-started.asciidoc @@ -75,33 +75,6 @@ function. + See <> for more examples. -* *Google cloud example*: This example configures a function called -`storage` that collects log events from Google Cloud Storage. When the specified -event type occurs on the Cloud Storage bucket, the cloud function executes and -sends events to the configured output: -+ -["source","sh",subs="attributes"] ----- -functionbeat.provider.gcp.location_id: "europe-west2" -functionbeat.provider.gcp.project_id: "my-project-123456" -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" <1> -functionbeat.provider.gcp.functions: - - name: storage <2> - enabled: true - type: storage - description: "Google Cloud Function for Cloud Storage" - trigger: - resource: "projects/my-project/buckets/my-storage" - event_type: "google.storage.object.finalize" ----- -<1> The name of the GCP storage bucket where the function artifacts will be -deployed. -<2> Details about the function you want to deploy, including the name of the -function, the type of resource to monitor, and the resource event that triggers -the function. -+ -See <> for more examples. - -- include::{libbeat-dir}/shared/config-check.asciidoc[] @@ -176,41 +149,6 @@ If deployment fails, see <> for help troubleshooting. :fnexample!: -[float] -[[deploy-to-gcp]] -==== Deploy to Google Cloud Platform - -beta[] - -. In Google Cloud, create a service account that has these required roles: -+ --- -include::iam-permissions.asciidoc[tag=gcp-roles-deployment] --- -+ -See the https://cloud.google.com/docs/authentication/getting-started[Google -Cloud documentation] for more information about creating a service account. - -. Set the `GOOGLE_APPLICATION_CREDENTIALS` environment variable to point to -the JSON file that contains your service account key. For example: -+ --- -include::tab-widgets/credentials-google-widget.asciidoc[] --- - -. Deploy the cloud functions. -+ -For example, the following command deploys a function called `storage`: -+ --- -include::tab-widgets/deploy-google-widget.asciidoc[] --- -+ -The function is deployed to Google Cloud Platform and ready to send events -to the configured output. -+ -If deployment fails, see <> for help troubleshooting. - [float] [[view-data]] === Step 6: View your data in {kib} diff --git a/x-pack/functionbeat/docs/iam-permissions.asciidoc b/x-pack/functionbeat/docs/iam-permissions.asciidoc index 25dc16a236c8..9b09d4d9a4e0 100644 --- a/x-pack/functionbeat/docs/iam-permissions.asciidoc +++ b/x-pack/functionbeat/docs/iam-permissions.asciidoc @@ -10,7 +10,6 @@ This section describes the minimum privileges or roles required to deploy functions to your cloud provider: * <> -* <> [[iam-permissions-aws]] @@ -130,17 +129,3 @@ function that reads from SQS queues or Kinesis data streams. ] } ---- - -[[iam-permissions-gcp]] -===== Roles required by Google Cloud Platform - -The following roles are required to deploy Cloud Functions to Google Cloud -Platform: - -// tag::gcp-roles-deployment[] -* Cloud Functions Developer -* Cloud Functions Service Agent -* Service Account User -* Storage Admin -* Storage Object Admin -// end::gcp-roles-deployment[] diff --git a/x-pack/functionbeat/functionbeat.reference.yml b/x-pack/functionbeat/functionbeat.reference.yml index 5531351df49d..e5ccc87ba83d 100644 --- a/x-pack/functionbeat/functionbeat.reference.yml +++ b/x-pack/functionbeat/functionbeat.reference.yml @@ -296,114 +296,6 @@ functionbeat.provider.aws.functions: # Set to true to publish fields with null values in events. #keep_null: false -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - # ================================== General =================================== # The name of the shipper that publishes the network data. It can be used to group diff --git a/x-pack/functionbeat/functionbeat.yml b/x-pack/functionbeat/functionbeat.yml index 3575f5e1d81e..63b2b56bdcb7 100644 --- a/x-pack/functionbeat/functionbeat.yml +++ b/x-pack/functionbeat/functionbeat.yml @@ -251,107 +251,6 @@ functionbeat.provider.aws.functions: # Default is 1. #parallelization_factor: 1 -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" -#==================== Elasticsearch template setting ========================== - -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false # ================================== General =================================== diff --git a/x-pack/functionbeat/include/feature.go b/x-pack/functionbeat/include/feature.go index f66f8532f748..1770a05ef5a4 100644 --- a/x-pack/functionbeat/include/feature.go +++ b/x-pack/functionbeat/include/feature.go @@ -7,14 +7,12 @@ package include import ( "github.com/elastic/beats/v7/libbeat/feature" "github.com/elastic/beats/v7/x-pack/functionbeat/manager/aws" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/gcp" "github.com/elastic/beats/v7/x-pack/functionbeat/provider/local/local" ) // Bundle feature enabled. var Bundle = feature.MustBundle( aws.Bundle, - gcp.Bundle, local.Bundle, ) diff --git a/x-pack/functionbeat/include/fields.go b/x-pack/functionbeat/include/fields.go index d650fc6a25a5..31a2a8bae124 100644 --- a/x-pack/functionbeat/include/fields.go +++ b/x-pack/functionbeat/include/fields.go @@ -19,5 +19,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/x-pack/functionbeat/magefile.go b/x-pack/functionbeat/magefile.go index 95861a3f0f2e..7a755bc4b875 100644 --- a/x-pack/functionbeat/magefile.go +++ b/x-pack/functionbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main @@ -166,11 +167,7 @@ func BuildPkgForFunctions() error { err := os.RemoveAll("pkg") filesToCopy := map[string]string{ - filepath.Join("provider", "aws", "functionbeat-aws"): filepath.Join("pkg", "functionbeat-aws"), - filepath.Join("provider", "gcp", "pubsub", "pubsub.go"): filepath.Join("pkg", "pubsub", "pubsub.go"), - filepath.Join("provider", "gcp", "storage", "storage.go"): filepath.Join("pkg", "storage", "storage.go"), - filepath.Join("provider", "gcp", "build", "pubsub", "vendor"): filepath.Join("pkg", "pubsub", "vendor"), - filepath.Join("provider", "gcp", "build", "storage", "vendor"): filepath.Join("pkg", "storage", "vendor"), + filepath.Join("provider", "aws", "functionbeat-aws"): filepath.Join("pkg", "functionbeat-aws"), } for src, dest := range filesToCopy { c := &devtools.CopyTask{ @@ -185,29 +182,6 @@ func BuildPkgForFunctions() error { return nil } -// TestGCPFunctions are used by the CI to test if the GCP functions can be built with -// the selected Go version. -// The version is 1.13.1 (Ref: https://cloud.google.com/functions/docs/concepts/go-runtime) -func TestGCPFunctions() error { - for _, f := range []string{"pubsub", "storage"} { - params := devtools.DefaultBuildArgs() - inputFiles := filepath.Join("provider", "gcp", f, f+".go") - params.InputFiles = []string{inputFiles} - params.Name = f - params.CGO = false - params.Env = map[string]string{ - "GOOS": "linux", - "GOARCH": "amd64", - } - - err := devtools.Build(params) - if err != nil { - return fmt.Errorf("error while building %s for GCP: %+v", f, err) - } - } - return nil -} - // BuildSystemTestBinary build a binary for testing that is instrumented for // testing and measuring code coverage. The binary is only instrumented for // coverage when TEST_COVERAGE=true (default is false). diff --git a/x-pack/functionbeat/manager/gcp/cli_manager.go b/x-pack/functionbeat/manager/gcp/cli_manager.go deleted file mode 100644 index d286f1e465ab..000000000000 --- a/x-pack/functionbeat/manager/gcp/cli_manager.go +++ /dev/null @@ -1,206 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - "io/ioutil" - "os" - "strings" - - "github.com/pkg/errors" - "golang.org/x/oauth2" - "golang.org/x/oauth2/google" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" - fngcp "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -type installer interface { - Config() *fngcp.FunctionConfig - Name() string -} - -// CLIManager interacts with Google Cloud to deploy, update or remove a function. -type CLIManager struct { - templateBuilder *defaultTemplateBuilder - location string - tokenSrc oauth2.TokenSource - log *logp.Logger - config *Config -} - -// Deploy uploads the function to GCP. -func (c *CLIManager) Deploy(name string) error { - c.log.Debugf("Deploying function: %s", name) - defer c.log.Debugf("Deploy finish for function '%s'", name) - - err := c.deploy(false, name) - if err != nil { - return err - } - - c.log.Debugf("Successfully created function '%s'", name) - return nil -} - -// Update updates the function. -func (c *CLIManager) Update(name string) error { - c.log.Debugf("Starting updating function '%s'", name) - defer c.log.Debugf("Update complete for function '%s'", name) - - err := c.deploy(true, name) - if err != nil { - return err - } - - c.log.Debugf("Successfully updated function: '%s'", name) - return nil -} - -// deploy uploads to bucket and creates a function on GCP. -func (c *CLIManager) deploy(update bool, name string) error { - functionData, err := c.templateBuilder.execute(name) - if err != nil { - return err - } - - executer := executor.NewExecutor(c.log) - executer.Add(newOpEnsureBucket(c.log, c.config)) - executer.Add(newOpUploadToBucket(c.log, c.config, name, functionData.raw)) - - token, err := c.getTokenSrc() - if err != nil { - return err - } - - ctx := &functionContext{} - if update { - executer.Add(newOpUpdateFunction(ctx, c.log, token, functionData.function.Name, functionData.function)) - } else { - executer.Add(newOpCreateFunction(ctx, c.log, token, c.location, name, functionData.function)) - } - - executer.Add(newOpWaitForFunction(ctx, c.log, token)) - - if err := executer.Execute(nil); err != nil { - if rollbackErr := executer.Rollback(nil); rollbackErr != nil { - return errors.Wrapf(err, "could not rollback, error: %s", rollbackErr) - } - return err - } - return nil -} - -// Remove removes a stack and unregister any resources created. -func (c *CLIManager) Remove(name string) error { - c.log.Debugf("Removing function: %s", name) - defer c.log.Debugf("Removal of function '%s' complete", name) - - functionData, err := c.templateBuilder.execute(name) - if err != nil { - return err - } - - token, err := c.getTokenSrc() - if err != nil { - return err - } - - ctx := &functionContext{} - executer := executor.NewExecutor(c.log) - executer.Add(newOpDeleteFunction(ctx, c.log, c.location, functionData.function.Name, token)) - executer.Add(newOpDeleteFromBucket(c.log, c.config, name)) - - if err := executer.Execute(nil); err != nil { - if rollbackErr := executer.Rollback(nil); rollbackErr != nil { - return errors.Wrapf(err, "could not rollback, error: %s", rollbackErr) - } - return err - } - - c.log.Debugf("Successfully deleted function: '%s'", name) - return nil -} - -// Export prints the exported function data. -func (c *CLIManager) Export(name string) error { - tmpl, err := c.templateBuilder.RawTemplate(name) - if err != nil { - return err - } - fmt.Println(tmpl) - - return nil -} - -// Package packages functions for GCP. -func (c *CLIManager) Package(outputPattern string) error { - resources := zipResources() - for providerSuffix, r := range resources { - content, err := core.MakeZip(packageUncompressedLimit, packageCompressedLimit, r) - if err != nil { - return err - } - - output := strings.ReplaceAll(outputPattern, "{{.Provider}}", providerSuffix) - err = ioutil.WriteFile(output, content, 0644) - if err != nil { - return err - } - - fmt.Fprintf(os.Stderr, "Generated package for provider %s at: %s\n", providerSuffix, output) - } - return nil -} - -func (c *CLIManager) getTokenSrc() (oauth2.TokenSource, error) { - if c.tokenSrc != nil { - return c.tokenSrc, nil - } - - var err error - c.tokenSrc, err = google.DefaultTokenSource(context.Background(), "https://www.googleapis.com/auth/cloud-platform") - if err != nil { - return nil, fmt.Errorf("error while creating CLIManager: %+v", err) - } - - return c.tokenSrc, nil -} - -// NewCLI returns the interface to manage functions on Google Cloud Platform. -func NewCLI( - log *logp.Logger, - cfg *common.Config, - provider provider.Provider, -) (provider.CLIManager, error) { - config := &Config{} - if err := cfg.Unpack(config); err != nil { - return nil, err - } - - builder, err := provider.TemplateBuilder() - if err != nil { - return nil, err - } - templateBuilder, ok := builder.(*defaultTemplateBuilder) - if !ok { - return nil, fmt.Errorf("not defaultTemplateBuilder") - } - - location := fmt.Sprintf(locationTemplate, config.ProjectID, config.Location) - - return &CLIManager{ - config: config, - log: logp.NewLogger("gcp"), - location: location, - templateBuilder: templateBuilder, - }, nil -} diff --git a/x-pack/functionbeat/manager/gcp/cli_manager_test.go b/x-pack/functionbeat/manager/gcp/cli_manager_test.go deleted file mode 100644 index 63d3e1f445b4..000000000000 --- a/x-pack/functionbeat/manager/gcp/cli_manager_test.go +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp diff --git a/x-pack/functionbeat/manager/gcp/config.go b/x-pack/functionbeat/manager/gcp/config.go deleted file mode 100644 index d6fcd9b24e04..000000000000 --- a/x-pack/functionbeat/manager/gcp/config.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -// Config exposes the configuration options of the GCP provider. -type Config struct { - Location string `config:"location_id" validate:"required"` - ProjectID string `config:"project_id" validate:"required"` - FunctionStorage string `config:"storage_name" validate:"required"` -} diff --git a/x-pack/functionbeat/manager/gcp/function_context.go b/x-pack/functionbeat/manager/gcp/function_context.go deleted file mode 100644 index 9a558214ee86..000000000000 --- a/x-pack/functionbeat/manager/gcp/function_context.go +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "errors" -) - -var ( - errWrongContext = errors.New("invalid type, expecting function context") - errMissingFunctionName = errors.New("missing function operation name") -) - -type functionContext struct { - name string -} diff --git a/x-pack/functionbeat/manager/gcp/gcp.go b/x-pack/functionbeat/manager/gcp/gcp.go deleted file mode 100644 index c33ae2493a67..000000000000 --- a/x-pack/functionbeat/manager/gcp/gcp.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -// Bundle exposes the trigger supported by the gcp provider. -var Bundle = provider.MustCreate( - "gcp", - provider.NewDefaultProvider("gcp", NewCLI, NewTemplateBuilder), - feature.MakeDetails("Google Cloud Functions", "listen to events on Google Cloud", feature.Stable), -).MustAddFunction("pubsub", - gcp.NewPubSub, - gcp.PubSubDetails(), -).MustAddFunction("storage", - gcp.NewStorage, - gcp.StorageDetails(), -).Bundle() diff --git a/x-pack/functionbeat/manager/gcp/op_create_function.go b/x-pack/functionbeat/manager/gcp/op_create_function.go deleted file mode 100644 index cf970a770914..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_create_function.go +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opCreateFunction struct { - ctx *functionContext - log *logp.Logger - tokenSrc oauth2.TokenSource - location string - name string - function *cloudfunctions.CloudFunction -} - -func newOpCreateFunction( - ctx *functionContext, - log *logp.Logger, - tokenSrc oauth2.TokenSource, - location string, - name string, - f *cloudfunctions.CloudFunction, -) *opCreateFunction { - return &opCreateFunction{ - ctx: ctx, - log: log, - tokenSrc: tokenSrc, - name: name, - location: location, - function: f, - } -} - -// Execute creates a function from the zip uploaded. -func (o *opCreateFunction) Execute(_ executor.Context) error { - o.log.Debugf("Creating function %s at %s", o.function.Name, o.function.SourceArchiveUrl) - - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - functionSvc := cloudfunctions.NewProjectsLocationsFunctionsService(svc) - operation, err := functionSvc.Create(o.location, o.function).Context(context.TODO()).Do() - if err != nil { - return fmt.Errorf("error while creating function: %+v", err) - } - - o.ctx.name = operation.Name - - if operation.Done { - o.log.Debugf("Function %s created successfully", o.function.Name) - } else { - o.log.Debugf("Operation '%s' is in progress to create function %s", operation.Name, o.function.Name) - } - - return nil -} - -// Rollback removes the deployed function. -func (o *opCreateFunction) Rollback(_ executor.Context) error { - return newOpDeleteFunction(o.ctx, o.log, o.location, o.function.Name, o.tokenSrc).Execute(nil) -} diff --git a/x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go b/x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go deleted file mode 100644 index 50841bd7f63c..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/storage" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opDeleteFromBucket struct { - log *logp.Logger - config *Config - name string -} - -func newOpDeleteFromBucket(log *logp.Logger, config *Config, name string) *opDeleteFromBucket { - return &opDeleteFromBucket{ - log: log, - config: config, - name: name, - } -} - -// Execute removes the function from the bucket. -// storage.objects.delete permission is required. -func (o *opDeleteFromBucket) Execute(_ executor.Context) error { - o.log.Debugf("Removing file '%s' from bucket '%s'", o.name, o.config.FunctionStorage) - - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return fmt.Errorf("could not create storage client: %+v", err) - } - - err = client.Bucket(o.config.FunctionStorage).Object(o.name).Delete(ctx) - if err != nil { - return err - } - - o.log.Debugf("Successfully removed function '%s' from bucket '%s'", o.name, o.config.FunctionStorage) - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_delete_function.go b/x-pack/functionbeat/manager/gcp/op_delete_function.go deleted file mode 100644 index 97b8b25cf113..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_delete_function.go +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opDeleteFunction struct { - ctx *functionContext - log *logp.Logger - location string - name string - tokenSrc oauth2.TokenSource -} - -func newOpDeleteFunction( - ctx *functionContext, - log *logp.Logger, - location string, - name string, - tokenSrc oauth2.TokenSource, -) *opDeleteFunction { - return &opDeleteFunction{ - ctx: ctx, - log: log, - location: location, - name: name, - tokenSrc: tokenSrc, - } -} - -// Execute creates a function from the zip uploaded. -func (o *opDeleteFunction) Execute(_ executor.Context) error { - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - functionSvc := cloudfunctions.NewProjectsLocationsFunctionsService(svc) - operation, err := functionSvc.Delete(o.name).Context(context.TODO()).Do() - if err != nil { - return fmt.Errorf("error while removing function %s: %+v", o.name, err) - } - - o.ctx.name = operation.Name - - if operation.Done { - o.log.Debugf("Function %s removed successfully", o.name) - } - - return nil -} - -// Rollback -func (o *opDeleteFunction) Rollback(_ executor.Context) error { - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_ensure_bucket.go b/x-pack/functionbeat/manager/gcp/op_ensure_bucket.go deleted file mode 100644 index 06da4fb446f2..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_ensure_bucket.go +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/storage" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opEnsureBucket struct { - log *logp.Logger - config *Config - created bool -} - -func newOpEnsureBucket(log *logp.Logger, cfg *Config) *opEnsureBucket { - return &opEnsureBucket{log: log, config: cfg, created: false} -} - -func (o *opEnsureBucket) Execute(_ executor.Context) error { - o.log.Debugf("Verifying presence of Cloud Storage bucket: '%s'", o.config.FunctionStorage) - - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return err - } - - bucket := client.Bucket(o.config.FunctionStorage) - attrs, err := bucket.Attrs(ctx) - if err == storage.ErrBucketNotExist { - berr := bucket.Create(ctx, o.config.ProjectID, nil) - if berr != nil { - return fmt.Errorf("cannot create bucket for function: %+v", berr) - } - o.created = true - o.log.Debugf("Cloud Storage bucket created with name '%s', attributes: %+v", o.config.FunctionStorage, attrs) - return nil - } - - if err != nil { - return fmt.Errorf("cannot get info on bucket: %+v", err) - } - - o.log.Debugf("Cloud Storage bucket exists with name '%s', attributes: %+v", o.config.FunctionStorage, attrs) - return nil -} - -func (o *opEnsureBucket) Rollback(_ executor.Context) error { - if o.created { - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return err - } - err = client.Bucket(o.config.FunctionStorage).Delete(ctx) - if err != nil { - return err - } - } - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_update_function.go b/x-pack/functionbeat/manager/gcp/op_update_function.go deleted file mode 100644 index ca70af1aad8a..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_update_function.go +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opUpdateFunction struct { - ctx *functionContext - log *logp.Logger - tokenSrc oauth2.TokenSource - name string - function *cloudfunctions.CloudFunction -} - -func newOpUpdateFunction( - ctx *functionContext, - log *logp.Logger, - tokenSrc oauth2.TokenSource, - name string, - f *cloudfunctions.CloudFunction, -) *opUpdateFunction { - return &opUpdateFunction{ - ctx: ctx, - log: log, - tokenSrc: tokenSrc, - name: name, - function: f, - } -} - -// Execute updates an existing function. -func (o *opUpdateFunction) Execute(_ executor.Context) error { - o.log.Debugf("Updating function %s at %s", o.function.Name, o.function.SourceArchiveUrl) - - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - functionSvc := cloudfunctions.NewProjectsLocationsFunctionsService(svc) - operation, err := functionSvc.Patch(o.name, o.function).Context(context.TODO()).Do() - if err != nil { - return fmt.Errorf("error while updating function: %+v", err) - } - - o.ctx.name = operation.Name - - if operation.Done { - o.log.Debugf("Function %s updated successfully", o.function.Name) - } else { - o.log.Debugf("Operation '%s' is in progress to update function %s", operation.Name, o.function.Name) - } - - return nil -} - -// Rollback updates the deployed function. -func (o *opUpdateFunction) Rollback(_ executor.Context) error { - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go b/x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go deleted file mode 100644 index a05a16c7b717..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/storage" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opUploadToBucket struct { - log *logp.Logger - config *Config - name string - raw []byte -} - -func newOpUploadToBucket(log *logp.Logger, config *Config, name string, raw []byte) *opUploadToBucket { - return &opUploadToBucket{ - log: log, - config: config, - name: name, - raw: raw, - } -} - -// Execute loads function to bucket. -// If function needs to be overwritten, storage.objects.delete permission is required. -func (o *opUploadToBucket) Execute(_ executor.Context) error { - o.log.Debugf("Uploading file '%s' to bucket '%s' with size %d bytes", o.name, o.config.FunctionStorage, len(o.raw)) - - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return fmt.Errorf("could not create storage client: %+v", err) - } - - w := client.Bucket(o.config.FunctionStorage).Object(o.name).NewWriter(ctx) - w.ContentType = "text/plain" - _, err = w.Write(o.raw) - if err != nil { - return fmt.Errorf("error while writing function: %+v", err) - } - err = w.Close() - if err != nil { - return fmt.Errorf("error while closing writer: %+v", err) - } - - o.log.Debugf("Upload to bucket was successful") - - return nil -} - -// Rollback removes the loaded archive. -func (o *opUploadToBucket) Rollback(ctx executor.Context) error { - err := newOpDeleteFromBucket(o.log, o.config, o.name).Execute(ctx) - if err != nil { - o.log.Debugf("Fail to delete file from bucket, error: %+v", err) - } - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_wait_for_function.go b/x-pack/functionbeat/manager/gcp/op_wait_for_function.go deleted file mode 100644 index 94cf2dcbc0df..000000000000 --- a/x-pack/functionbeat/manager/gcp/op_wait_for_function.go +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - "time" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -var periodicCheck = 5 * time.Second - -type opWaitForFunction struct { - ctx *functionContext - log *logp.Logger - tokenSrc oauth2.TokenSource -} - -func newOpWaitForFunction(ctx *functionContext, log *logp.Logger, tokenSrc oauth2.TokenSource) *opWaitForFunction { - return &opWaitForFunction{ - ctx: ctx, - log: log, - tokenSrc: tokenSrc, - } -} - -func (o *opWaitForFunction) Execute(_ executor.Context) error { - if o.ctx.name == "" { - return errMissingFunctionName - } - - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - opSvc := cloudfunctions.NewOperationsService(svc) - for { - op, err := opSvc.Get(o.ctx.name).Context(context.Background()).Do() - if err != nil { - return err - } - - if op.Done { - if op.Error != nil { - return fmt.Errorf("error while creating function (code: %d):\n%s", op.Error.Code, op.Error.Message) - } - o.log.Debugf("Successfully deployed function") - return nil - } - - o.log.Debugf("Operation %s has not finished yet. Retrying in 5 seconds.", o.ctx.name) - - timer := time.NewTimer(periodicCheck) - <-timer.C - } -} diff --git a/x-pack/functionbeat/manager/gcp/template_builder.go b/x-pack/functionbeat/manager/gcp/template_builder.go deleted file mode 100644 index c6f1292ce154..000000000000 --- a/x-pack/functionbeat/manager/gcp/template_builder.go +++ /dev/null @@ -1,195 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "errors" - "fmt" - "path/filepath" - - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - yaml "gopkg.in/yaml.v2" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/core/bundle" - fngcp "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -const ( - runtime = "go113" // Golang 1.13 - archiveURL = "gs://%s/%s" // path to the function archive - locationTemplate = "projects/%s/locations/%s" // full name of the location - functionName = locationTemplate + "/functions/%s" // full name of the functions - - // Package size limits for GCP provider - // Ref: https://cloud.google.com/functions/quotas - packageCompressedLimit = 100 * 1000 * 1000 // 100MB - packageUncompressedLimit = 500 * 1000 * 1000 // 500MB -) - -// defaultTemplateBuilder builds request object when deploying Functionbeat using -// the command deploy. -type defaultTemplateBuilder struct { - provider provider.Provider - log *logp.Logger - gcpConfig *Config -} - -type functionData struct { - raw []byte - function *cloudfunctions.CloudFunction -} - -// NewTemplateBuilder returns the requested template builder -func NewTemplateBuilder(log *logp.Logger, cfg *common.Config, p provider.Provider) (provider.TemplateBuilder, error) { - gcpCfg := &Config{} - err := cfg.Unpack(gcpCfg) - if err != nil { - return &defaultTemplateBuilder{}, err - } - - return &defaultTemplateBuilder{log: log, gcpConfig: gcpCfg, provider: p}, nil -} - -func (d *defaultTemplateBuilder) execute(name string) (*functionData, error) { - d.log.Debug("Compressing all assets into an artifact") - - fn, err := findFunction(d.provider, name) - if err != nil { - return nil, err - } - - resources := zipResourcesOfFunc(fn.Name()) - raw, err := core.MakeZip(packageUncompressedLimit, packageCompressedLimit, resources) - if err != nil { - return nil, err - } - - d.log.Debugf("Compression is successful (zip size: %d bytes)", len(raw)) - - return &functionData{ - raw: raw, - function: d.cloudFunction(name, fn.Config()), - }, nil -} - -func findFunction(p provider.Provider, name string) (installer, error) { - fn, err := p.FindFunctionByName(name) - if err != nil { - return nil, err - } - - function, ok := fn.(installer) - if !ok { - return nil, errors.New("incompatible type received, expecting: 'functionManager'") - } - - return function, nil -} - -func (d *defaultTemplateBuilder) cloudFunction(name string, config *fngcp.FunctionConfig) *cloudfunctions.CloudFunction { - fnName := fmt.Sprintf(functionName, d.gcpConfig.ProjectID, d.gcpConfig.Location, name) - sourceArchiveURL := fmt.Sprintf(archiveURL, d.gcpConfig.FunctionStorage, name) - - return &cloudfunctions.CloudFunction{ - Name: fnName, - Description: config.Description, - EntryPoint: config.EntryPoint(), - EnvironmentVariables: map[string]string{ - "ENABLED_FUNCTIONS": name, - "BEAT_STRICT_PERMS": "false", - }, - EventTrigger: &cloudfunctions.EventTrigger{ - EventType: config.Trigger.EventType, - Resource: config.Trigger.Resource, - Service: config.Trigger.Service, - }, - Labels: config.Labels, - MaxInstances: int64(config.MaxInstances), - Runtime: runtime, - ServiceAccountEmail: config.ServiceAccountEmail, - SourceArchiveUrl: sourceArchiveURL, - Timeout: config.Timeout, - VpcConnector: config.VPCConnector, - } -} - -// RawTemplate returns the JSON to POST to the endpoint. -func (d *defaultTemplateBuilder) RawTemplate(name string) (string, error) { - fn, err := findFunction(d.provider, name) - if err != nil { - return "", err - } - config := fn.Config() - - properties := common.MapStr{ - "codeLocation": "pkg/" + fn.Name(), - "codeBucket": d.gcpConfig.FunctionStorage, - "codeBucketObject": "functionbeat.zip", - "location": d.gcpConfig.Location, - "runtime": runtime, - "entryPoint": config.EntryPoint(), - "eventTrigger": config.Trigger, - "environmentVariables": common.MapStr{ - "ENABLED_FUNCTIONS": name, - "BEAT_STRICT_PERMS": false, - }, - } - - if config.Timeout != "" { - properties["timeout"] = config.Timeout - } - if config.MemorySize != "" { - properties["availableMemoryMb"] = config.MemorySize - } - if len(config.ServiceAccountEmail) > 0 { - properties["serviceAccountEmail"] = config.ServiceAccountEmail - } - if len(config.Labels) > 0 { - properties["labels"] = config.Labels - } - if config.MaxInstances > 0 { - properties["maxInstances"] = config.MaxInstances - } - if len(config.VPCConnector) > 0 { - properties["vpcConnector"] = config.VPCConnector - } - - output := common.MapStr{ - "resources": []common.MapStr{ - common.MapStr{ - "name": fmt.Sprintf(functionName, d.gcpConfig.ProjectID, d.gcpConfig.Location, name), - "type": "google.cloud.functions.v1.CloudFunction", - "properties": properties, - }, - }, - } - - yamlBytes, err := yaml.Marshal(output) - return string(yamlBytes), err -} - -func zipResources() map[string][]bundle.Resource { - functions, err := provider.ListFunctions("gcp") - if err != nil { - fmt.Println(err) - return nil - } - - resources := make(map[string][]bundle.Resource) - for _, f := range functions { - resources["gcp-"+f] = zipResourcesOfFunc(f) - } - return resources -} - -func zipResourcesOfFunc(typeName string) []bundle.Resource { - root := filepath.Join("pkg", typeName) - vendor := bundle.Folder(filepath.Join("pkg", typeName, "vendor"), filepath.Join("pkg", typeName), 0644) - return append(vendor, &bundle.LocalFile{Path: filepath.Join(root, typeName+".go"), FileMode: 0755}) -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/config.go b/x-pack/functionbeat/provider/gcp/gcp/config.go deleted file mode 100644 index 0af370edcf28..000000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/config.go +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "fmt" -) - -// FunctionConfig stores the configuration of a Google Cloud Function -type FunctionConfig struct { - Description string `config:"description"` - MemorySize string `config:"memory_size"` - Timeout string `config:"timeout"` - ServiceAccountEmail string `config:"service_account_email"` - Labels map[string]string `config:"labels"` - VPCConnector string `config:"vpc_connector"` - MaxInstances int `config:"maximum_instances"` - Trigger Trigger `config:"trigger" validate:"required"` - - entryPoint string -} - -// Trigger stores the configuration of the function trigger. -type Trigger struct { - EventType string `config:"event_type" json:"eventType"` - Resource string `config:"resource" validate:"required" json:"resource"` - Service string `config:"service" json:"service,omitempty" yaml:"service,omitempty"` -} - -func defaultPubSubFunctionConfig() *FunctionConfig { - return &FunctionConfig{ - Trigger: Trigger{ - EventType: "google.pubsub.topic.publish", - }, - entryPoint: "RunPubSub", - } -} - -func defaultStorageFunctionConfig() *FunctionConfig { - return &FunctionConfig{ - Trigger: Trigger{ - EventType: "google.storage.object.finalize", - }, - entryPoint: "RunCloudStorage", - } -} - -// Validate checks a function configuration. -func (c *FunctionConfig) Validate() error { - if c.entryPoint == "" { - return fmt.Errorf("entryPoint cannot be empty") - } - return nil -} - -// EntryPoint returns the name of the function to run on GCP. -func (c *FunctionConfig) EntryPoint() string { - return c.entryPoint -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/pubsub.go b/x-pack/functionbeat/provider/gcp/gcp/pubsub.go deleted file mode 100644 index 19b45428bbd5..000000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/pubsub.go +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/functions/metadata" - "cloud.google.com/go/pubsub" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/telemetry" -) - -const ( - pubSubEventCtxStr = "pub_sub_event" -) - -// PubSub represents a Google Cloud function which reads event from Google Pub/Sub triggers. -type PubSub struct { - log *logp.Logger - config *FunctionConfig -} - -// PubSubEventKey is an alias to string -type PubSubEventKey string - -// NewPubSub returns a new function to read from Google Pub/Sub. -func NewPubSub(provider provider.Provider, cfg *common.Config) (provider.Function, error) { - config := defaultPubSubFunctionConfig() - err := cfg.Unpack(config) - if err != nil { - return &PubSub{}, err - } - - return &PubSub{ - log: logp.NewLogger("pubsub"), - config: config, - }, nil -} - -// PubSubEvent stores the context and the message from Google Pub/Sub. -type PubSubEvent struct { - Metadata *metadata.Metadata - Message pubsub.Message -} - -// NewPubSubContext creates a context from context and message returned from Google Pub/Sub. -func NewPubSubContext(beatCtx, ctx context.Context, m pubsub.Message) (context.Context, error) { - data, err := metadata.FromContext(ctx) - if err != nil { - return nil, err - } - e := PubSubEvent{ - Metadata: data, - Message: m, - } - - return context.WithValue(beatCtx, PubSubEventKey(pubSubEventCtxStr), e), nil -} - -// Run start -func (p *PubSub) Run(ctx context.Context, client core.Client, t telemetry.T) error { - t.AddTriggeredFunction() - - pubsubEvent, err := p.getEventDataFromContext(ctx) - if err != nil { - return err - } - event, err := transformPubSub(pubsubEvent.Metadata, pubsubEvent.Message) - if err := client.Publish(event); err != nil { - p.log.Errorf("error while publishing Pub/Sub event %+v", err) - return err - } - client.Wait() - - return nil -} - -func (p *PubSub) getEventDataFromContext(ctx context.Context) (PubSubEvent, error) { - iPubSubEvent := ctx.Value(PubSubEventKey(pubSubEventCtxStr)) - if iPubSubEvent == nil { - return PubSubEvent{}, fmt.Errorf("no pub_sub_event in context") - } - event, ok := iPubSubEvent.(PubSubEvent) - if !ok { - return PubSubEvent{}, fmt.Errorf("not PubSubEvent: %+v", iPubSubEvent) - } - - return event, nil -} - -// PubSubDetails returns the details of the feature. -func PubSubDetails() feature.Details { - return feature.MakeDetails("Google Pub/Sub trigger", "receive messages from Google Pub/Sub.", feature.Stable) -} - -// Name returns the name of the function. -func (p *PubSub) Name() string { - return "pubsub" -} - -// Config returns the configuration to use when creating the function. -func (p *PubSub) Config() *FunctionConfig { - return p.config -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/storage.go b/x-pack/functionbeat/provider/gcp/gcp/storage.go deleted file mode 100644 index 5b1d6e7f4e63..000000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/storage.go +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/functions/metadata" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/telemetry" -) - -const ( - storageEvtCtxStr = "storage_event" -) - -// Storage represents a Google Cloud function which reads event from Google Cloud Storage. -type Storage struct { - log *logp.Logger - config *FunctionConfig -} - -// StorageEventKey is an alias to string -type StorageEventKey string - -// StorageEventWithMeta stores the storage event received from Google Cloud Storage. -type StorageEventWithMeta struct { - Metadata *metadata.Metadata - Event StorageEvent -} - -// NewStorage returns a new function to read from Google Cloud Storage. -func NewStorage(provider provider.Provider, cfg *common.Config) (provider.Function, error) { - config := defaultStorageFunctionConfig() - err := cfg.Unpack(config) - if err != nil { - return &Storage{}, err - } - - return &Storage{ - log: logp.NewLogger("storage"), - config: config, - }, nil -} - -// NewStorageContext creates a context from context and message returned from Google Cloud Storage. -func NewStorageContext(beatCtx, ctx context.Context, e StorageEvent) (context.Context, error) { - data, err := metadata.FromContext(ctx) - if err != nil { - return nil, err - } - - evt := StorageEventWithMeta{ - Metadata: data, - Event: e, - } - - return context.WithValue(beatCtx, StorageEventKey(storageEvtCtxStr), evt), nil -} - -// Run start -func (s *Storage) Run(ctx context.Context, client core.Client, t telemetry.T) error { - t.AddTriggeredFunction() - - evt, err := s.getEventDataFromContext(ctx) - if err != nil { - return err - } - event, err := transformStorage(evt.Metadata, evt.Event) - if err := client.Publish(event); err != nil { - s.log.Errorf("error while publishing Google Cloud Storage event %+v", err) - return err - } - client.Wait() - - return nil -} - -func (s *Storage) getEventDataFromContext(ctx context.Context) (StorageEventWithMeta, error) { - iEvt := ctx.Value(StorageEventKey(storageEvtCtxStr)) - if iEvt == nil { - return StorageEventWithMeta{}, fmt.Errorf("no storage_event in context") - } - evt, ok := iEvt.(StorageEventWithMeta) - if !ok { - return StorageEventWithMeta{}, fmt.Errorf("not StorageEvent: %+v", iEvt) - } - - return evt, nil -} - -// StorageDetails returns the details of the feature. -func StorageDetails() feature.Details { - return feature.MakeDetails("Google Cloud Storage trigger", "receive events from Google Cloud Storage.", feature.Stable) -} - -// Name returns the name of the function. -func (s *Storage) Name() string { - return "storage" -} - -// Config returns the configuration to use when creating the function. -func (s *Storage) Config() *FunctionConfig { - return s.config -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/transformer.go b/x-pack/functionbeat/provider/gcp/gcp/transformer.go deleted file mode 100644 index beb4fa7f3548..000000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/transformer.go +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "time" - - "cloud.google.com/go/functions/metadata" - "cloud.google.com/go/pubsub" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" -) - -// StorageEvent is the event from Google Cloud Storage -type StorageEvent struct { - Bucket string `json:"bucket"` - Name string `json:"name"` - Metageneration string `json:"metageneration"` - ResourceState string `json:"resourceState"` - Created time.Time `json:"timeCreated"` - Updated time.Time `json:"updated"` -} - -// transformPubSub takes a Pub/Sub message and context and transforms it into an event. -func transformPubSub(mData *metadata.Metadata, msg pubsub.Message) (beat.Event, error) { - return beat.Event{ - Timestamp: mData.Timestamp, - Fields: common.MapStr{ - "event": common.MapStr{ - "kind": "event", - }, - "cloud": common.MapStr{ - "provider": "gcp", - }, - "read_timestamp": time.Now(), - "message": string(msg.Data), - "attributes": msg.Attributes, - "id": mData.EventID, - "resource": common.MapStr{ - "service": mData.Resource.Service, - "name": mData.Resource.Name, - "event_type": mData.Resource.Type, - }, - }, - }, nil -} - -// transformStorage takes a Cloud Storage object and transforms it into an event. -func transformStorage(mData *metadata.Metadata, evt StorageEvent) (beat.Event, error) { - - return beat.Event{ - Timestamp: mData.Timestamp, - Fields: common.MapStr{ - "event": common.MapStr{ - "kind": "event", - "category": []string{"file"}, - "type": []string{"info"}, - }, - "cloud": common.MapStr{ - "provider": "gcp", - }, - "read_timestamp": time.Now(), - "id": mData.EventID, - "resource": common.MapStr{ - "service": mData.Resource.Service, - "name": mData.Resource.Name, - "event_type": mData.Resource.Type, - "state": evt.ResourceState, - }, - "storage_bucket": evt.Bucket, - "file": common.MapStr{ - "name": evt.Name, - "mtime": evt.Updated, - "ctime": evt.Updated, - "created": evt.Created, - }, - "meta-generation": evt.Metageneration, - }, - }, nil -} diff --git a/x-pack/functionbeat/provider/gcp/include/feature.go b/x-pack/functionbeat/provider/gcp/include/feature.go deleted file mode 100644 index 7af761e82deb..000000000000 --- a/x-pack/functionbeat/provider/gcp/include/feature.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package include - -import ( - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -// Bundle exposes the trigger supported by the GCP provider. -var bundle = provider.MustCreate( - "gcp", - provider.NewDefaultProvider("gcp", provider.NewNullCli, provider.NewNullTemplateBuilder), - feature.MakeDetails("Google Cloud Platform", "listen to events from Google Cloud Platform", feature.Stable), -).MustAddFunction("pubsub", - gcp.NewPubSub, - gcp.PubSubDetails(), -).MustAddFunction("storage", - gcp.NewStorage, - gcp.StorageDetails(), -).Bundle() - -func init() { - feature.MustRegisterBundle(bundle) -} diff --git a/x-pack/functionbeat/provider/gcp/pubsub/pubsub.go b/x-pack/functionbeat/provider/gcp/pubsub/pubsub.go deleted file mode 100644 index 813a0df9cc06..000000000000 --- a/x-pack/functionbeat/provider/gcp/pubsub/pubsub.go +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package pubsub - -import ( - "context" - "fmt" - - gpubsub "cloud.google.com/go/pubsub" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/cfgfile" - "github.com/elastic/beats/v7/libbeat/cmd/instance" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/cfgwarn" - "github.com/elastic/beats/v7/x-pack/functionbeat/config" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/beater" - prov "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" - _ "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/include" -) - -func RunPubSub(ctx context.Context, m gpubsub.Message) error { - cfgwarn.Beta("Google Cloud Platform support is in beta") - settings := instance.Settings{ - Name: "functionbeat", - IndexPrefix: "functionbeat", - ConfigOverrides: config.FunctionOverrides, - } - - cfgfile.SetConfigPath("/srv/src/pubsub") - cfgfile.ChangeDefaultCfgfileFlag(settings.Name) - - return instance.Run(settings, initFunctionbeat(ctx, m)) -} - -func initFunctionbeat(ctx context.Context, m gpubsub.Message) func(*beat.Beat, *common.Config) (beat.Beater, error) { - return func(b *beat.Beat, cfg *common.Config) (beat.Beater, error) { - bt, err := beater.New(b, cfg) - if err != nil { - return nil, err - } - - fnbeat, ok := bt.(*beater.Functionbeat) - if !ok { - return nil, fmt.Errorf("not Functionbeat") - } - - fnbeat.Ctx, err = prov.NewPubSubContext(fnbeat.Ctx, ctx, m) - if err != nil { - return nil, err - } - - return fnbeat, nil - } -} diff --git a/x-pack/functionbeat/provider/gcp/storage/storage.go b/x-pack/functionbeat/provider/gcp/storage/storage.go deleted file mode 100644 index 2de829392d2b..000000000000 --- a/x-pack/functionbeat/provider/gcp/storage/storage.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package storage - -import ( - "context" - "fmt" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/cfgfile" - "github.com/elastic/beats/v7/libbeat/cmd/instance" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/cfgwarn" - "github.com/elastic/beats/v7/x-pack/functionbeat/config" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/beater" - "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" - _ "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/include" -) - -func RunCloudStorage(ctx context.Context, e gcp.StorageEvent) error { - cfgwarn.Beta("Google Cloud Platform support is in beta") - settings := instance.Settings{ - Name: "functionbeat", - IndexPrefix: "functionbeat", - ConfigOverrides: config.FunctionOverrides, - } - - cfgfile.SetConfigPath("/srv/src/storage") - cfgfile.ChangeDefaultCfgfileFlag(settings.Name) - - return instance.Run(settings, initFunctionbeat(ctx, e)) -} - -func initFunctionbeat(ctx context.Context, e gcp.StorageEvent) func(*beat.Beat, *common.Config) (beat.Beater, error) { - return func(b *beat.Beat, cfg *common.Config) (beat.Beater, error) { - bt, err := beater.New(b, cfg) - if err != nil { - return nil, err - } - - fnbeat, ok := bt.(*beater.Functionbeat) - if !ok { - return nil, fmt.Errorf("not Functionbeat") - } - - fnbeat.Ctx, err = gcp.NewStorageContext(fnbeat.Ctx, ctx, e) - if err != nil { - return nil, err - } - - return fnbeat, nil - } -} diff --git a/x-pack/functionbeat/scripts/mage/providers.go b/x-pack/functionbeat/scripts/mage/providers.go index 538fcdda071b..d77c1da548df 100644 --- a/x-pack/functionbeat/scripts/mage/providers.go +++ b/x-pack/functionbeat/scripts/mage/providers.go @@ -13,7 +13,6 @@ import ( var ( availableProviders = []ProviderDetails{ {Name: "aws", Buildable: true, GOOS: "linux", GOARCH: "amd64"}, - {Name: "gcp", Buildable: false}, } ) diff --git a/x-pack/functionbeat/scripts/mage/update.go b/x-pack/functionbeat/scripts/mage/update.go index 99f1b9a3ce34..468bdafbe0fd 100644 --- a/x-pack/functionbeat/scripts/mage/update.go +++ b/x-pack/functionbeat/scripts/mage/update.go @@ -5,13 +5,9 @@ package mage import ( - "os" - "path/filepath" - "github.com/magefile/mage/mg" devtools "github.com/elastic/beats/v7/dev-tools/mage" - "github.com/elastic/beats/v7/dev-tools/mage/gotool" ) // Update target namespace. @@ -24,7 +20,7 @@ var Aliases = map[string]interface{}{ // All updates all generated content. func (Update) All() { - mg.Deps(Update.Fields, Update.IncludeFields, Update.Config, Update.FieldDocs, Update.VendorBeats) + mg.Deps(Update.Fields, Update.IncludeFields, Update.Config, Update.FieldDocs) } // Config generates both the short and reference configs. @@ -50,42 +46,3 @@ func (Update) IncludeFields() error { return devtools.GenerateAllInOneFieldsGo() } - -// VendorBeats collects the vendor folder required to deploy the function for GCP. -func (Update) VendorBeats() error { - for _, f := range []string{"pubsub", "storage"} { - gcpVendorPath := filepath.Join("provider", "gcp", "build", f, "vendor") - err := os.RemoveAll(gcpVendorPath) - if err != nil { - return err - } - - deps, err := gotool.ListDepsLocation("github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/" + f) - if err != nil { - return err - } - - for importPath, location := range deps { - cp := &devtools.CopyTask{ - Source: location, - Dest: filepath.Join(gcpVendorPath, importPath), - Mode: 0600, - DirMode: os.ModeDir | 0750, - Exclude: []string{ - ".*_test.go$", - ".*.yml", - // XXX GCP function metadata lib must be removed to avoid build failures - // GH issue: https://github.com/googleapis/google-cloud-go/issues/1947 - ".*cloud.google.com/go.*/functions/metadata.*", - }, - } - err = cp.Execute() - if err != nil { - return err - } - } - - } - - return nil -} diff --git a/x-pack/heartbeat/include/fields.go b/x-pack/heartbeat/include/fields.go index 7a55f9788cb6..3d0d0faeedd8 100644 --- a/x-pack/heartbeat/include/fields.go +++ b/x-pack/heartbeat/include/fields.go @@ -19,5 +19,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/x-pack/heartbeat/magefile.go b/x-pack/heartbeat/magefile.go index f9c9c54b724f..0427001f11a6 100644 --- a/x-pack/heartbeat/magefile.go +++ b/x-pack/heartbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/libbeat/Dockerfile b/x-pack/libbeat/Dockerfile index d9af989f3c11..47e632241d91 100644 --- a/x-pack/libbeat/Dockerfile +++ b/x-pack/libbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go b/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go index f799cc0615ff..dd117213466d 100644 --- a/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go +++ b/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/cache_test.go b/x-pack/libbeat/common/cloudfoundry/cache_test.go index b345beff2266..69b2716db080 100644 --- a/x-pack/libbeat/common/cloudfoundry/cache_test.go +++ b/x-pack/libbeat/common/cloudfoundry/cache_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/config_test.go b/x-pack/libbeat/common/cloudfoundry/config_test.go index 79ba7d47cc1b..1e951dc24aa4 100644 --- a/x-pack/libbeat/common/cloudfoundry/config_test.go +++ b/x-pack/libbeat/common/cloudfoundry/config_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/dopplerconsumer.go b/x-pack/libbeat/common/cloudfoundry/dopplerconsumer.go index 96349eeb7ea2..bd00d424953a 100644 --- a/x-pack/libbeat/common/cloudfoundry/dopplerconsumer.go +++ b/x-pack/libbeat/common/cloudfoundry/dopplerconsumer.go @@ -5,8 +5,9 @@ package cloudfoundry import ( - "fmt" + "crypto/tls" "net/http" + "net/url" "regexp" "sync" @@ -37,13 +38,8 @@ type DopplerConsumer struct { started bool } -func newDopplerConsumer(address string, id string, log *logp.Logger, client *http.Client, tr *TokenRefresher, callbacks DopplerCallbacks) (*DopplerConsumer, error) { - transport, ok := client.Transport.(*http.Transport) - if !ok { - return nil, fmt.Errorf("expected http transport on client") - } - - c := consumer.New(address, transport.TLSClientConfig, transport.Proxy) +func newDopplerConsumer(address string, id string, log *logp.Logger, tlsConfig *tls.Config, proxy func(*http.Request) (*url.URL, error), tr *TokenRefresher, callbacks DopplerCallbacks) (*DopplerConsumer, error) { + c := consumer.New(address, tlsConfig, proxy) c.RefreshTokenFrom(tr) c.SetDebugPrinter(newLogpDebugPrinter(log)) diff --git a/x-pack/libbeat/common/cloudfoundry/events_test.go b/x-pack/libbeat/common/cloudfoundry/events_test.go index af924b33ba38..921d3fde1910 100644 --- a/x-pack/libbeat/common/cloudfoundry/events_test.go +++ b/x-pack/libbeat/common/cloudfoundry/events_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/hub.go b/x-pack/libbeat/common/cloudfoundry/hub.go index 9bcf929ded2c..42bc786f550f 100644 --- a/x-pack/libbeat/common/cloudfoundry/hub.go +++ b/x-pack/libbeat/common/cloudfoundry/hub.go @@ -129,13 +129,14 @@ func (h *Hub) DopplerConsumerFromClient(client *cfclient.Client, callbacks Doppl if dopplerAddress == "" { dopplerAddress = client.Endpoint.DopplerEndpoint } - httpClient, _, err := h.httpClient() + tlsConfig, err := tlscommon.LoadTLSConfig(h.cfg.Transport.TLS) if err != nil { - return nil, errors.Wrap(err, "getting http client") + return nil, errors.Wrap(err, "loading tls config") } + proxy := h.cfg.Transport.Proxy.ProxyFunc() tr := TokenRefresherFromCfClient(client) - return newDopplerConsumer(dopplerAddress, h.cfg.ShardID, h.log, httpClient, tr, callbacks) + return newDopplerConsumer(dopplerAddress, h.cfg.ShardID, h.log, tlsConfig.ToConfig(), proxy, tr, callbacks) } // doerFromClient returns an auth token doer using uaa. diff --git a/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go b/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go index 724f22d3ed85..3284b66cec9e 100644 --- a/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go +++ b/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/magefile.go b/x-pack/libbeat/magefile.go index 2b8d8f35d8ee..5e941dc5aa07 100644 --- a/x-pack/libbeat/magefile.go +++ b/x-pack/libbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/metricbeat/magefile.go b/x-pack/metricbeat/magefile.go index c48a5365a670..85f8cf074d29 100644 --- a/x-pack/metricbeat/magefile.go +++ b/x-pack/metricbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/metricbeat/module/appsearch/stats/data_test.go b/x-pack/metricbeat/module/appsearch/stats/data_test.go index e34bd673e7e9..9ec726beaa87 100644 --- a/x-pack/metricbeat/module/appsearch/stats/data_test.go +++ b/x-pack/metricbeat/module/appsearch/stats/data_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package stats diff --git a/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go b/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go index 1dd0c10d095f..9e56d150b2c2 100644 --- a/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/aws/aws_test.go b/x-pack/metricbeat/module/aws/aws_test.go index 7d89adca5740..08b0dd9bf83d 100644 --- a/x-pack/metricbeat/module/aws/aws_test.go +++ b/x-pack/metricbeat/module/aws/aws_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package aws diff --git a/x-pack/metricbeat/module/aws/billing/billing_integration_test.go b/x-pack/metricbeat/module/aws/billing/billing_integration_test.go index 944d2b47f754..9dbd38f87828 100644 --- a/x-pack/metricbeat/module/aws/billing/billing_integration_test.go +++ b/x-pack/metricbeat/module/aws/billing/billing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package billing diff --git a/x-pack/metricbeat/module/aws/billing/billing_test.go b/x-pack/metricbeat/module/aws/billing/billing_test.go index 2ecd511109da..63d2e4b04c5e 100644 --- a/x-pack/metricbeat/module/aws/billing/billing_test.go +++ b/x-pack/metricbeat/module/aws/billing/billing_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package billing diff --git a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go index 578c6ca9cefc..0758dcbee93c 100644 --- a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go +++ b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package cloudwatch diff --git a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go index 5e4157f24a27..f2942412c5a2 100644 --- a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go +++ b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudwatch diff --git a/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go b/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go index 52a97184650e..930e004dbc0e 100644 --- a/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go +++ b/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package dynamodb diff --git a/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go b/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go index 4012a8c00609..5cb29ae905af 100644 --- a/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go +++ b/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package ebs diff --git a/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go b/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go index 03a8d0ad6afd..e89195f73b72 100644 --- a/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go +++ b/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package ec2 diff --git a/x-pack/metricbeat/module/aws/elb/elb_integration_test.go b/x-pack/metricbeat/module/aws/elb/elb_integration_test.go index 6fc05f5a0e18..4126937bc3d4 100644 --- a/x-pack/metricbeat/module/aws/elb/elb_integration_test.go +++ b/x-pack/metricbeat/module/aws/elb/elb_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package elb diff --git a/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go b/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go index a0bcc461932a..970c6961c372 100644 --- a/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go +++ b/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package kinesis diff --git a/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go b/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go index 6948f93515ee..d986deca14f1 100644 --- a/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go +++ b/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package lambda diff --git a/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go b/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go index c35e32a7a12d..e17709ea3643 100644 --- a/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go +++ b/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package natgateway diff --git a/x-pack/metricbeat/module/aws/rds/rds_integration_test.go b/x-pack/metricbeat/module/aws/rds/rds_integration_test.go index 71cdd362ede9..494a0695faef 100644 --- a/x-pack/metricbeat/module/aws/rds/rds_integration_test.go +++ b/x-pack/metricbeat/module/aws/rds/rds_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package rds diff --git a/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go b/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go index 6cf529df29c7..c23833359b81 100644 --- a/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go +++ b/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package s3_daily_storage diff --git a/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go b/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go index f361ebc382d0..7c2e327a57e3 100644 --- a/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go +++ b/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package s3_request diff --git a/x-pack/metricbeat/module/aws/sns/sns_integration_test.go b/x-pack/metricbeat/module/aws/sns/sns_integration_test.go index b00d1a6b7083..3a3e1531d2b5 100644 --- a/x-pack/metricbeat/module/aws/sns/sns_integration_test.go +++ b/x-pack/metricbeat/module/aws/sns/sns_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package sns diff --git a/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go b/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go index 63b22190d56c..1a0e31dbeb38 100644 --- a/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go +++ b/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package sqs diff --git a/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go b/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go index 22429a5cf3b1..03da232c57b8 100644 --- a/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go +++ b/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package transitgateway diff --git a/x-pack/metricbeat/module/aws/usage/usage_integration_test.go b/x-pack/metricbeat/module/aws/usage/usage_integration_test.go index f7f63e6ff4df..4fbed9a4af46 100644 --- a/x-pack/metricbeat/module/aws/usage/usage_integration_test.go +++ b/x-pack/metricbeat/module/aws/usage/usage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package usage diff --git a/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go b/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go index bd91fe1d54f2..62c413096f3d 100644 --- a/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go +++ b/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package vpn diff --git a/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go b/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go index 67129f38ff7c..2511827ddd55 100644 --- a/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go +++ b/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package task_stats diff --git a/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go b/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go index c33f05c2de65..f9f3d12b63b0 100644 --- a/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go +++ b/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package app_insights diff --git a/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go b/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go index 8762cae440d4..744cfb9e4a80 100644 --- a/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go +++ b/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package app_state diff --git a/x-pack/metricbeat/module/azure/billing/billing_integration_test.go b/x-pack/metricbeat/module/azure/billing/billing_integration_test.go index da7c9977d58e..72d221a1cddb 100644 --- a/x-pack/metricbeat/module/azure/billing/billing_integration_test.go +++ b/x-pack/metricbeat/module/azure/billing/billing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package billing diff --git a/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go b/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go index 929e4e98a828..c001aafad23b 100644 --- a/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go +++ b/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package compute_vm diff --git a/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go b/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go index 0a4a8df5e6b8..f577f45a7a6d 100644 --- a/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go +++ b/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package compute_vm_scaleset diff --git a/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go b/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go index e12e879084e4..b33def1b7dc7 100644 --- a/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go +++ b/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package container_instance diff --git a/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go b/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go index df38ea55a795..c8de4bea8866 100644 --- a/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go +++ b/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package container_registry diff --git a/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go b/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go index d9dc1bc98b8f..0a304753ffe6 100644 --- a/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go +++ b/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package container_service diff --git a/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go b/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go index 4c00bd03af04..e9e198fc1496 100644 --- a/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go +++ b/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package database_account diff --git a/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go b/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go index b351592d0dda..9383d92de6ce 100644 --- a/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go +++ b/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package monitor diff --git a/x-pack/metricbeat/module/azure/storage/storage_integration_test.go b/x-pack/metricbeat/module/azure/storage/storage_integration_test.go index b611f82694bf..a8a83c2a7efe 100644 --- a/x-pack/metricbeat/module/azure/storage/storage_integration_test.go +++ b/x-pack/metricbeat/module/azure/storage/storage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package storage diff --git a/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go b/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go index 605f7145f64a..f58e876580e8 100644 --- a/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package container diff --git a/x-pack/metricbeat/module/cloudfoundry/container/container_test.go b/x-pack/metricbeat/module/cloudfoundry/container/container_test.go index ceabb62cc019..5970204c680f 100644 --- a/x-pack/metricbeat/module/cloudfoundry/container/container_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/container/container_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package container diff --git a/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go b/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go index f7c13b1a6035..49194a61174a 100644 --- a/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package counter diff --git a/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go b/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go index a315709878e1..0a00cbd226a6 100644 --- a/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package counter diff --git a/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go b/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go index af815a3d4b76..2fb9abfc2195 100644 --- a/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package value diff --git a/x-pack/metricbeat/module/cloudfoundry/value/value_test.go b/x-pack/metricbeat/module/cloudfoundry/value/value_test.go index 2003388e2283..097f3d37fb2f 100644 --- a/x-pack/metricbeat/module/cloudfoundry/value/value_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/value/value_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package value diff --git a/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go b/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go index 797b69820731..bb62d07e3d97 100644 --- a/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go +++ b/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/cockroachdb/status/status_test.go b/x-pack/metricbeat/module/cockroachdb/status/status_test.go index bb6bab070977..1e2bfaf717ab 100644 --- a/x-pack/metricbeat/module/cockroachdb/status/status_test.go +++ b/x-pack/metricbeat/module/cockroachdb/status/status_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package status diff --git a/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go b/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go index 54c970325b35..38d9692afce9 100644 --- a/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/coredns/stats/stats_test.go b/x-pack/metricbeat/module/coredns/stats/stats_test.go index 106e8e10480e..0d5404448a51 100644 --- a/x-pack/metricbeat/module/coredns/stats/stats_test.go +++ b/x-pack/metricbeat/module/coredns/stats/stats_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package stats diff --git a/x-pack/metricbeat/module/enterprisesearch/health/data_test.go b/x-pack/metricbeat/module/enterprisesearch/health/data_test.go index af9142d39ed7..34eb068c3715 100644 --- a/x-pack/metricbeat/module/enterprisesearch/health/data_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/health/data_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package health diff --git a/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go b/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go index 364039e0f513..e22a7e892ad2 100644 --- a/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package health diff --git a/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go b/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go index aa1f99fe475d..1d8fe76eb52b 100644 --- a/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package stats diff --git a/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go b/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go index a6aa304b6dcc..06d6e2262537 100644 --- a/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go b/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go index 7da63d3dc64c..11543f78e665 100644 --- a/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go +++ b/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package billing diff --git a/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go b/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go index 74aade084422..522b9ba04010 100644 --- a/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go +++ b/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package compute diff --git a/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go b/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go index 1389338f92c9..4b8f3a60d983 100644 --- a/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go +++ b/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package loadbalancing diff --git a/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go b/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go index f9d9aece45d6..69900e4a42f2 100644 --- a/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go +++ b/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package metrics diff --git a/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go b/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go index 8c47c45a0ad1..ade96ddd9400 100644 --- a/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go +++ b/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package pubsub diff --git a/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go b/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go index 34c6a37886c4..97c69e05be31 100644 --- a/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go +++ b/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package storage diff --git a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go index 1f6cf78a1da6..42d03eb7c86b 100644 --- a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go +++ b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go index 4adad858ec89..2ff72c28898c 100644 --- a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go +++ b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package qmgr diff --git a/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go b/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go index e270880723a2..dba12326910a 100644 --- a/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go +++ b/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/application_pool.go b/x-pack/metricbeat/module/iis/application_pool/application_pool.go index 9c92894fb297..6a2ee7de5d09 100644 --- a/x-pack/metricbeat/module/iis/application_pool/application_pool.go +++ b/x-pack/metricbeat/module/iis/application_pool/application_pool.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go b/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go index 86cd72664603..1ebe22d68700 100644 --- a/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go +++ b/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/reader.go b/x-pack/metricbeat/module/iis/application_pool/reader.go index d15b0a477476..72ecbb8bd0d4 100644 --- a/x-pack/metricbeat/module/iis/application_pool/reader.go +++ b/x-pack/metricbeat/module/iis/application_pool/reader.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/reader_test.go b/x-pack/metricbeat/module/iis/application_pool/reader_test.go index 55731f1ee1b0..681ad36115f6 100644 --- a/x-pack/metricbeat/module/iis/application_pool/reader_test.go +++ b/x-pack/metricbeat/module/iis/application_pool/reader_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/test/integration.go b/x-pack/metricbeat/module/iis/test/integration.go index e7ff62956636..ede53c9406fd 100644 --- a/x-pack/metricbeat/module/iis/test/integration.go +++ b/x-pack/metricbeat/module/iis/test/integration.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package test diff --git a/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go b/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go index 345490cc5c8c..ea11ef5b5a21 100644 --- a/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go +++ b/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package webserver diff --git a/x-pack/metricbeat/module/iis/webserver/webserver_test.go b/x-pack/metricbeat/module/iis/webserver/webserver_test.go index a0622df76c11..0611aaff6555 100644 --- a/x-pack/metricbeat/module/iis/webserver/webserver_test.go +++ b/x-pack/metricbeat/module/iis/webserver/webserver_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package webserver diff --git a/x-pack/metricbeat/module/iis/website/website_integration_test.go b/x-pack/metricbeat/module/iis/website/website_integration_test.go index cebe87e27666..654bfc1c27fc 100644 --- a/x-pack/metricbeat/module/iis/website/website_integration_test.go +++ b/x-pack/metricbeat/module/iis/website/website_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package website diff --git a/x-pack/metricbeat/module/iis/website/website_test.go b/x-pack/metricbeat/module/iis/website/website_test.go index ac850dbe9995..a2a7951e2043 100644 --- a/x-pack/metricbeat/module/iis/website/website_test.go +++ b/x-pack/metricbeat/module/iis/website/website_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package website diff --git a/x-pack/metricbeat/module/istio/citadel/citadel_test.go b/x-pack/metricbeat/module/istio/citadel/citadel_test.go index 239b34644ce6..0a36cc0245d0 100644 --- a/x-pack/metricbeat/module/istio/citadel/citadel_test.go +++ b/x-pack/metricbeat/module/istio/citadel/citadel_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package citadel diff --git a/x-pack/metricbeat/module/istio/galley/galley_test.go b/x-pack/metricbeat/module/istio/galley/galley_test.go index 0dbd1b8832cd..135ba28633cb 100644 --- a/x-pack/metricbeat/module/istio/galley/galley_test.go +++ b/x-pack/metricbeat/module/istio/galley/galley_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package galley diff --git a/x-pack/metricbeat/module/istio/istiod/istiod_test.go b/x-pack/metricbeat/module/istio/istiod/istiod_test.go index 23ce86ca7f05..1e5ae645d53f 100644 --- a/x-pack/metricbeat/module/istio/istiod/istiod_test.go +++ b/x-pack/metricbeat/module/istio/istiod/istiod_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package istiod diff --git a/x-pack/metricbeat/module/istio/mesh/mesh_test.go b/x-pack/metricbeat/module/istio/mesh/mesh_test.go index 71d475d9ece5..d1fd460147aa 100644 --- a/x-pack/metricbeat/module/istio/mesh/mesh_test.go +++ b/x-pack/metricbeat/module/istio/mesh/mesh_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package mesh diff --git a/x-pack/metricbeat/module/istio/mixer/mixer_test.go b/x-pack/metricbeat/module/istio/mixer/mixer_test.go index 6f9b624f70e6..548225737f1d 100644 --- a/x-pack/metricbeat/module/istio/mixer/mixer_test.go +++ b/x-pack/metricbeat/module/istio/mixer/mixer_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package mixer diff --git a/x-pack/metricbeat/module/istio/pilot/pilot_test.go b/x-pack/metricbeat/module/istio/pilot/pilot_test.go index 0cd6113fe3f9..11874bce4476 100644 --- a/x-pack/metricbeat/module/istio/pilot/pilot_test.go +++ b/x-pack/metricbeat/module/istio/pilot/pilot_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package pilot diff --git a/x-pack/metricbeat/module/istio/proxy/proxy_test.go b/x-pack/metricbeat/module/istio/proxy/proxy_test.go index 48f3b104296b..fe6c1c6541d0 100644 --- a/x-pack/metricbeat/module/istio/proxy/proxy_test.go +++ b/x-pack/metricbeat/module/istio/proxy/proxy_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package proxy diff --git a/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go b/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go index 5e039265d2b5..6c41f5cdd312 100644 --- a/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go +++ b/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package performance diff --git a/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go b/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go index 07465b525b53..aa17f307d193 100644 --- a/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go +++ b/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package transaction_log diff --git a/x-pack/metricbeat/module/oracle/performance/metricset_test.go b/x-pack/metricbeat/module/oracle/performance/metricset_test.go index 359bdd12c97d..628ece136269 100644 --- a/x-pack/metricbeat/module/oracle/performance/metricset_test.go +++ b/x-pack/metricbeat/module/oracle/performance/metricset_test.go @@ -1,8 +1,8 @@ // Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build oracle +//go:build integration && oracle +// +build integration,oracle package performance diff --git a/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go b/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go index f960e2918a3d..9a66e85b4e5b 100644 --- a/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go +++ b/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build oracle +//go:build integration && oracle +// +build integration,oracle package tablespace diff --git a/x-pack/metricbeat/module/prometheus/collector/_meta/data.json b/x-pack/metricbeat/module/prometheus/collector/_meta/data.json index d35cd24a9211..b1fd95460ad7 100644 --- a/x-pack/metricbeat/module/prometheus/collector/_meta/data.json +++ b/x-pack/metricbeat/module/prometheus/collector/_meta/data.json @@ -11,11 +11,10 @@ }, "prometheus": { "labels": { - "device": "br-33d819d5f834", "job": "prometheus" }, - "node_network_carrier": { - "value": 0 + "up": { + "value": 1 } }, "service": { diff --git a/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go b/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go index 179a97c75ce2..e4a3d53aeb1f 100644 --- a/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go +++ b/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package collector diff --git a/x-pack/metricbeat/module/prometheus/collector/collector_test.go b/x-pack/metricbeat/module/prometheus/collector/collector_test.go index 5f42875dd76b..36d4008065d9 100644 --- a/x-pack/metricbeat/module/prometheus/collector/collector_test.go +++ b/x-pack/metricbeat/module/prometheus/collector/collector_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package collector diff --git a/x-pack/metricbeat/module/prometheus/collector/histogram_test.go b/x-pack/metricbeat/module/prometheus/collector/histogram_test.go index 594a67de5044..6db36a3aa9fb 100644 --- a/x-pack/metricbeat/module/prometheus/collector/histogram_test.go +++ b/x-pack/metricbeat/module/prometheus/collector/histogram_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package collector diff --git a/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go b/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go index 6c031be5bba0..1cd2afc8bdb0 100644 --- a/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go +++ b/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package remote_write diff --git a/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go b/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go index 8c061d57176a..022e78a11e7b 100644 --- a/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go +++ b/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package node diff --git a/x-pack/metricbeat/module/redisenterprise/node/node_test.go b/x-pack/metricbeat/module/redisenterprise/node/node_test.go index 72a3c5af2827..3208bf16fa69 100644 --- a/x-pack/metricbeat/module/redisenterprise/node/node_test.go +++ b/x-pack/metricbeat/module/redisenterprise/node/node_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package node diff --git a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go index 756f6ce864b6..553453241b90 100644 --- a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go +++ b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package proxy diff --git a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go index 7da64bbfc544..88b7bf5af2e7 100644 --- a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go +++ b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package proxy diff --git a/x-pack/metricbeat/module/sql/query/query_integration_test.go b/x-pack/metricbeat/module/sql/query/query_integration_test.go index b6c68bd43064..ac5b0a17af6b 100644 --- a/x-pack/metricbeat/module/sql/query/query_integration_test.go +++ b/x-pack/metricbeat/module/sql/query/query_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package query diff --git a/x-pack/metricbeat/module/stan/channels/channels_integration_test.go b/x-pack/metricbeat/module/stan/channels/channels_integration_test.go index ec34211aaa5b..1e9e31d58bc5 100644 --- a/x-pack/metricbeat/module/stan/channels/channels_integration_test.go +++ b/x-pack/metricbeat/module/stan/channels/channels_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package channels diff --git a/x-pack/metricbeat/module/stan/stats/stats_integration_test.go b/x-pack/metricbeat/module/stan/stats/stats_integration_test.go index a3a9de329642..5167767865ad 100644 --- a/x-pack/metricbeat/module/stan/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/stan/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go b/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go index 3fcb9bf22b6c..0f58f940a607 100644 --- a/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go +++ b/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package subscriptions diff --git a/x-pack/osquerybeat/beater/osquery_runner_test.go b/x-pack/osquerybeat/beater/osquery_runner_test.go index b1fe1c132e13..e04bcb5c1e03 100644 --- a/x-pack/osquerybeat/beater/osquery_runner_test.go +++ b/x-pack/osquerybeat/beater/osquery_runner_test.go @@ -12,6 +12,8 @@ import ( "golang.org/x/sync/errgroup" + "github.com/google/go-cmp/cmp" + "github.com/elastic/beats/v7/libbeat/logp" "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/config" "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/osqd" @@ -84,9 +86,7 @@ func TestOsqueryRunnerCancellable(t *testing.T) { } // Cancel - go func() { - cn() - }() + cn() // Wait for runner stop er := waitGroupWithTimeout(parentCtx, g, to) @@ -94,3 +94,84 @@ func TestOsqueryRunnerCancellable(t *testing.T) { t.Fatal("failed running:", er) } } + +func TestOsqueryRunnerRestart(t *testing.T) { + to := 10 * time.Second + + parentCtx := context.Background() + logger := logp.NewLogger("osquery_runner") + + runCh := make(chan struct{}, 1) + + var runs int + + runfn := func(ctx context.Context, flags osqd.Flags, inputCh <-chan []config.InputConfig) error { + runs++ + runCh <- struct{}{} + <-ctx.Done() + return nil + } + + ctx, cn := context.WithCancel(parentCtx) + defer cn() + + g, ctx := errgroup.WithContext(ctx) + + // Start runner + runner := newOsqueryRunner(logger) + g.Go(func() error { + return runner.Run(ctx, runfn) + }) + + // Sent input that will start the runner function + runner.Update(ctx, nil) + + // Wait for runner start + err := waitForStart(ctx, runCh, to) + if err != nil { + t.Fatal("failed starting:", err) + } + + inputConfigs := []config.InputConfig{ + { + Osquery: &config.OsqueryConfig{ + Options: map[string]interface{}{ + "foo": "bar", + }, + }, + }, + } + + // Update flags, this should restart the run function + runner.Update(ctx, inputConfigs) + + // Should get another run + err = waitForStart(ctx, runCh, to) + if err != nil { + t.Fatal("failed starting after flags update:", err) + } + + // Update with the same flags, should not restart the runner function + runner.Update(ctx, inputConfigs) + + // Should timeout on waiting for another run + err = waitForStart(ctx, runCh, 300*time.Millisecond) + if err != context.DeadlineExceeded { + t.Fatal("unexpected error type after update with the same flags:", err) + } + + // Cancel + cn() + + // Wait for runner stop + er := waitGroupWithTimeout(parentCtx, g, to) + if er != nil && !errors.Is(er, context.Canceled) { + t.Fatal("failed running:", er) + } + + // Check that there were total of 2 executions of run function + diff := cmp.Diff(2, runs) + if diff != "" { + t.Error(diff) + } +} diff --git a/x-pack/osquerybeat/docs/fields.asciidoc b/x-pack/osquerybeat/docs/fields.asciidoc index cc4b4281cfac..e3e47f7edb3a 100644 --- a/x-pack/osquerybeat/docs/fields.asciidoc +++ b/x-pack/osquerybeat/docs/fields.asciidoc @@ -14551,16 +14551,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/x-pack/osquerybeat/ext/osquery-extension/main.go b/x-pack/osquerybeat/ext/osquery-extension/main.go index 4c632254175d..659e355bcaf6 100644 --- a/x-pack/osquerybeat/ext/osquery-extension/main.go +++ b/x-pack/osquerybeat/ext/osquery-extension/main.go @@ -50,7 +50,7 @@ func main() { go monitorForParent() - sig := make(chan os.Signal) + sig := make(chan os.Signal, 1) signal.Notify(sig, os.Interrupt) <-sig } diff --git a/x-pack/osquerybeat/include/fields.go b/x-pack/osquerybeat/include/fields.go index 83dee5924063..5cff88f2846d 100644 --- a/x-pack/osquerybeat/include/fields.go +++ b/x-pack/osquerybeat/include/fields.go @@ -19,5 +19,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/x-pack/osquerybeat/internal/fetch/fetch.go b/x-pack/osquerybeat/internal/fetch/fetch.go index 4de7bc326b81..795869d7f2e6 100644 --- a/x-pack/osquerybeat/internal/fetch/fetch.go +++ b/x-pack/osquerybeat/internal/fetch/fetch.go @@ -5,21 +5,31 @@ package fetch import ( + "context" "fmt" "io/ioutil" "log" "net/http" "os" + "strings" "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/hash" ) -func Download(url, fp string) (hashout string, err error) { +// Download downloads the osquery distro package +// writes the content into a given filepath +// returns the sha256 hash +func Download(ctx context.Context, url, fp string) (hashout string, err error) { log.Printf("Download %s to %s", url, fp) cli := http.Client{} - res, err := cli.Get(url) + req, err := http.NewRequestWithContext(ctx, "GET", url, nil) + if err != nil { + return + } + + res, err := cli.Do(req) if err != nil { return } @@ -32,7 +42,7 @@ func Download(url, fp string) (hashout string, err error) { if err != nil { log.Printf("Failed to read the error response body: %v", err) } else { - s = string(b) + s = strings.TrimSpace(string(b)) } return hashout, fmt.Errorf("failed fetch %s, status: %d, message: %s", url, res.StatusCode, s) } diff --git a/x-pack/osquerybeat/internal/fetch/fetch_test.go b/x-pack/osquerybeat/internal/fetch/fetch_test.go new file mode 100644 index 000000000000..f234a78f2569 --- /dev/null +++ b/x-pack/osquerybeat/internal/fetch/fetch_test.go @@ -0,0 +1,92 @@ +// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one +// or more contributor license agreements. Licensed under the Elastic License; +// you may not use this file except in compliance with the Elastic License. + +package fetch + +import ( + "context" + "net/http" + "net/http/httptest" + "os" + "testing" + + "github.com/gofrs/uuid" + "github.com/google/go-cmp/cmp" +) + +func TestDownload(t *testing.T) { + ctx := context.Background() + + localFilePathUUID := func() string { + return uuid.Must(uuid.NewV4()).String() + } + tests := []struct { + Name string + Path string + LocalFilePath string + Status int + Payload string + Hash string + ErrStr string + }{ + { + Name: "Http OK", + Path: "/ok", + LocalFilePath: localFilePathUUID(), + Status: http.StatusOK, + Payload: "serenity now", + Hash: "d1071dfdfd6a5bdf08d9b110f664731cf327cc3d341038f0739699690b599281", + }, + { + Name: "Http OK, empty local file path", + Path: "/ok2", + LocalFilePath: "", + Status: http.StatusOK, + Payload: "serenity now", + Hash: "d1071dfdfd6a5bdf08d9b110f664731cf327cc3d341038f0739699690b599281", + ErrStr: "no such file or directory", + }, + { + Name: "Http not found", + Path: "/notfound", + LocalFilePath: localFilePathUUID(), + Payload: "file not found", + Status: http.StatusNotFound, + ErrStr: "file not found", + }, + } + + mux := http.NewServeMux() + for _, tc := range tests { + mux.HandleFunc(tc.Path, func(payload string, status int) func(w http.ResponseWriter, r *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { + http.Error(w, payload, status) + } + }(tc.Payload, tc.Status)) + } + + svr := httptest.NewServer(mux) + defer svr.Close() + + for _, tc := range tests { + t.Run(tc.Name, func(t *testing.T) { + hash, err := Download(ctx, svr.URL+tc.Path, tc.LocalFilePath) + defer os.Remove(tc.LocalFilePath) + + if err != nil { + if tc.ErrStr == "" { + t.Fatal("unexpected download error:", err) + } + return + } + + diff := cmp.Diff(tc.Hash, hash) + if diff != "" { + t.Fatal(diff) + } + + }) + } + +} diff --git a/x-pack/osquerybeat/internal/install/install_unix.go b/x-pack/osquerybeat/internal/install/install_unix.go index 6a16368540bd..769e5ba1485b 100644 --- a/x-pack/osquerybeat/internal/install/install_unix.go +++ b/x-pack/osquerybeat/internal/install/install_unix.go @@ -2,7 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -//+build !windows +//go:build !windows +// +build !windows package install diff --git a/x-pack/osquerybeat/internal/install/install_windows.go b/x-pack/osquerybeat/internal/install/install_windows.go index b28608e7e921..090303f4d0b2 100644 --- a/x-pack/osquerybeat/internal/install/install_windows.go +++ b/x-pack/osquerybeat/internal/install/install_windows.go @@ -2,7 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -//+build windows +//go:build windows +// +build windows package install diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd.go b/x-pack/osquerybeat/internal/osqd/osqueryd.go index 09a5d866f4f8..206846f985b8 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd.go @@ -5,6 +5,7 @@ package osqd import ( + "bufio" "context" "fmt" "io" @@ -263,8 +264,9 @@ func (q *OSQueryD) prepare(ctx context.Context) (func(), error) { // Write the autoload file extensionAutoloadPath := q.resolveDataPath(osqueryAutoload) - if err := ioutil.WriteFile(extensionAutoloadPath, []byte(extensionPath), 0644); err != nil { - return nil, errors.Wrap(err, "failed write osquery extension autoload file") + err = prepareAutoloadFile(extensionAutoloadPath, extensionPath, q.log) + if err != nil { + return nil, errors.Wrapf(err, "failed to prepare extensions autoload file") } // Write the flagsfile in order to lock down/prevent loading default flags from osquery global locations. @@ -286,6 +288,60 @@ func (q *OSQueryD) prepare(ctx context.Context) (func(), error) { return func() {}, nil } +func prepareAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath string, log *logp.Logger) error { + ok, err := fileutil.FileExists(extensionAutoloadPath) + if err != nil { + return errors.Wrapf(err, "failed to check osquery.autoload file exists") + } + + rewrite := false + + if ok { + log.Debugf("Extensions autoload file %s exists, verify the first extension is ours", extensionAutoloadPath) + err = verifyAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath) + if err != nil { + log.Debugf("Extensions autoload file %v verification failed, err: %v, create a new one", extensionAutoloadPath, err) + rewrite = true + } + } else { + log.Debugf("Extensions autoload file %s doesn't exists, create a new one", extensionAutoloadPath) + rewrite = true + } + + if rewrite { + if err := ioutil.WriteFile(extensionAutoloadPath, []byte(mandatoryExtensionPath), 0644); err != nil { + return errors.Wrap(err, "failed write osquery extension autoload file") + } + } + return nil +} + +func verifyAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath string) error { + f, err := os.Open(extensionAutoloadPath) + if err != nil { + return err + } + defer f.Close() + scanner := bufio.NewScanner(f) + for i := 0; scanner.Scan(); i++ { + line := scanner.Text() + if i == 0 { + // Check that the first line is the mandatory extension + if line != mandatoryExtensionPath { + return errors.New("extentsions autoload file is missing mandatory extension in the first line of the file") + } + } + + // Check that the line contains the valid path that exists + _, err := os.Stat(line) + if err != nil { + return err + } + } + + return scanner.Err() +} + func (q *OSQueryD) prepareBinPath() error { // If path to osquery was not set use the current executable path if q.binPath == "" { diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd_test.go b/x-pack/osquerybeat/internal/osqd/osqueryd_test.go index 513e921cd2ec..ae8387601dda 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd_test.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd_test.go @@ -5,8 +5,18 @@ package osqd import ( + "bufio" + "errors" + "io/ioutil" + "os" + "path/filepath" "testing" + "github.com/elastic/beats/v7/libbeat/common" + "github.com/elastic/beats/v7/libbeat/logp" + "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/fileutil" + + "github.com/gofrs/uuid" "github.com/google/go-cmp/cmp" ) @@ -46,3 +56,120 @@ func TestNew(t *testing.T) { t.Error(diff) } } + +func TestVerifyAutoloadFileMissing(t *testing.T) { + dir := uuid.Must(uuid.NewV4()).String() + extensionAutoloadPath := filepath.Join(dir, osqueryAutoload) + mandatoryExtensionPath := filepath.Join(dir, extensionName) + err := verifyAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath) + if !errors.Is(err, os.ErrNotExist) { + t.Fatalf("expected error: %v, got: %v", os.ErrNotExist, err) + } +} + +// TestPrepareAutoloadFile tests possibly different states of the osquery.autoload file and that it is restored into the workable state +func TestPrepareAutoloadFile(t *testing.T) { + validLogger := logp.NewLogger("osqueryd_test") + + // Prepare the directory with extension + dir, err := os.MkdirTemp("", "") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(dir) + mandatoryExtensionPath := filepath.Join(dir, extensionName) + + // Write fake extension file for testing + err = ioutil.WriteFile(mandatoryExtensionPath, nil, 0644) + if err != nil { + t.Fatal(err) + } + + randomContent := func(sz int) []byte { + b, err := common.RandomBytes(sz) + if err != nil { + t.Fatal(err) + } + return b + } + + tests := []struct { + Name string + FileContent []byte + }{ + { + Name: "Empty file", + FileContent: nil, + }, + { + Name: "File with mandatory extension", + FileContent: []byte(mandatoryExtensionPath), + }, + { + Name: "Missing mandatory extension, should restore the file", + FileContent: []byte(filepath.Join(dir, "foobar.ext")), + }, + { + Name: "User extension path doesn't exists", + FileContent: []byte(mandatoryExtensionPath + "\n" + filepath.Join(dir, "foobar.ext")), + }, + { + Name: "Random garbage", + FileContent: randomContent(1234), + }, + } + + for _, tc := range tests { + t.Run(tc.Name, func(t *testing.T) { + + // Setup + dir, err := os.MkdirTemp("", "") + if err != nil { + t.Fatal(err) + } + + defer os.RemoveAll(dir) + + extensionAutoloadPath := filepath.Join(dir, osqueryAutoload) + + err = ioutil.WriteFile(extensionAutoloadPath, tc.FileContent, 0644) + if err != nil { + t.Fatal(err) + } + + err = prepareAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath, validLogger) + if err != nil { + t.Fatal(err) + } + + // Check the content, should have our mandatory extension and possibly the other extension paths with each extension existing on the disk + f, err := os.Open(extensionAutoloadPath) + if err != nil { + t.Fatal(err) + } + defer f.Close() + scanner := bufio.NewScanner(f) + for i := 0; scanner.Scan(); i++ { + line := scanner.Text() + if i == 0 { + if line != mandatoryExtensionPath { + t.Fatalf("expected the fist line of the file to be: %v , got: %v", mandatoryExtensionPath, line) + } + } + // Check that it is a valid path to the file on the disk + ok, err := fileutil.FileExists(line) + if err != nil { + t.Fatal(err) + } + if !ok { + t.Fatalf("expected to have only valid paths to the extensions files that exists, got: %v", line) + } + } + + err = scanner.Err() + if err != nil { + t.Fatal(err) + } + }) + } +} diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go b/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go index 0d5da3e1cfa7..4840bad4329a 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package osqd diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go b/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go index 758dce74500c..5be16ba86690 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package osqd diff --git a/x-pack/osquerybeat/magefile.go b/x-pack/osquerybeat/magefile.go index 583b3e917cb3..d3e1923561bb 100644 --- a/x-pack/osquerybeat/magefile.go +++ b/x-pack/osquerybeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/osquerybeat/scripts/mage/distro.go b/x-pack/osquerybeat/scripts/mage/distro.go index dde52e3e7b16..1be99ae3f6d4 100644 --- a/x-pack/osquerybeat/scripts/mage/distro.go +++ b/x-pack/osquerybeat/scripts/mage/distro.go @@ -5,6 +5,7 @@ package mage import ( + "context" "errors" "fmt" "io/ioutil" @@ -121,7 +122,7 @@ func checkCacheAndFetch(osarch distro.OSArch, spec distro.Spec) (fetched bool, e log.Printf("Hash mismatch, expected: %s, got: %s.", specHash, fileHash) } - fileHash, err = fetch.Download(url, fp) + fileHash, err = fetch.Download(context.Background(), url, fp) if err != nil { log.Printf("File %s fetch failed, err: %v", url, err) return diff --git a/x-pack/packetbeat/magefile.go b/x-pack/packetbeat/magefile.go index 4dcb7c13a9be..f5e930c5156a 100644 --- a/x-pack/packetbeat/magefile.go +++ b/x-pack/packetbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/winlogbeat/magefile.go b/x-pack/winlogbeat/magefile.go index a52000fa830f..a40fb6f54232 100644 --- a/x-pack/winlogbeat/magefile.go +++ b/x-pack/winlogbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go b/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go index 36e5bdd5d6a4..b2ce22ad3a07 100644 --- a/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go +++ b/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go @@ -2,7 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -//+build ignore +//go:build ignore +// +build ignore package main